Skip to content

Instantly share code, notes, and snippets.

@victory316
Last active January 3, 2023 07:14
Show Gist options
  • Save victory316/b04dfc8c0d03caab2dbace67f1b419b9 to your computer and use it in GitHub Desktop.
Save victory316/b04dfc8c0d03caab2dbace67f1b419b9 to your computer and use it in GitHub Desktop.
Useful Kotlin extensions
fun Any?.isNull(): Boolean {
return this == null
}
fun Any?.isNotNull(): Boolean {
return this != null
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment