Skip to content

Instantly share code, notes, and snippets.

@stepango
Created December 24, 2015 02:26
Show Gist options
  • Save stepango/a1be0eb04cec0068ba5a to your computer and use it in GitHub Desktop.
Save stepango/a1be0eb04cec0068ba5a to your computer and use it in GitHub Desktop.
IsEmpty check for null string made easy
fun String?.isEmpty() :Boolean = this == null || "".equals(this)
val a :String? = null
a.isEmpty() // true
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment