Skip to content

Instantly share code, notes, and snippets.

@fabiomsr
Last active August 1, 2016 17:50
Show Gist options
  • Save fabiomsr/711fc44bd6c7f89f1c492b2ad2795b48 to your computer and use it in GitHub Desktop.
Save fabiomsr/711fc44bd6c7f89f1c492b2ad2795b48 to your computer and use it in GitHub Desktop.
// Java
if(x instanceof Integer){ }
final String text = (String) other;
if(x >= 0 && x <= 10 ){}
// Kotlin
if (x is Int) { }
val text = other as String
if (x in 0..10) { }
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment