Skip to content

Instantly share code, notes, and snippets.

@akshaykalola28
Created March 2, 2023 06:57
Show Gist options
  • Save akshaykalola28/2f51701a90a8149e23776b748c67ec47 to your computer and use it in GitHub Desktop.
Save akshaykalola28/2f51701a90a8149e23776b748c67ec47 to your computer and use it in GitHub Desktop.
Extension function for Run block ifNull
fun Any?.ifNull(block: () -> Unit) = run {
if (this == null) {
block()
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment