Configuring Android Studio with Kotlin
Last active
October 9, 2017 13:55
-
-
Save Bhavdip/259088e0f5745e1a3bb9a4db85357acc to your computer and use it in GitHub Desktop.
kotlin_tips_part2
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Elivs operator
The Elivs operator is represented by a question mark followed by colon (?:) and has such syntax:
The elvis operator works follows: if first operand is not null, then this operand will be returned, otherwise second operand will be returned.
Note that the right hand side expression is evaluated only if left-hand side is null.