Skip to content

Instantly share code, notes, and snippets.

@vishna
Created October 4, 2018 15:24
Show Gist options
  • Save vishna/0bebef1aa2747b4478bdd634b2c6c2b4 to your computer and use it in GitHub Desktop.
Save vishna/0bebef1aa2747b4478bdd634b2c6c2b4 to your computer and use it in GitHub Desktop.
Better safe than sorry
inline fun <T> safe(block: () -> T?) : T? {
return try {
block.invoke()
} catch (t: Throwable) {
null // ¯\_(ツ)_/¯
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment