Created
July 26, 2018 00:25
-
-
Save gorrotowi/4027e584c916b50203480a449a964223 to your computer and use it in GitHub Desktop.
Use elvis operator instead if/else
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
val name:String? = null | |
val l:Int = name?.length ?: -1 | |
print(l) // -1 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment