Skip to content

Instantly share code, notes, and snippets.

@abohomol
Created October 25, 2018 11:48
Show Gist options
  • Save abohomol/5ace8b697095647069127277be68d9d8 to your computer and use it in GitHub Desktop.
Save abohomol/5ace8b697095647069127277be68d9d8 to your computer and use it in GitHub Desktop.
fun getLength(instance: Any): Int {
return if (instance is String) {
instance.length
} else if (instance is Text) {
instance.size()
} else {
0
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment