Skip to content

Instantly share code, notes, and snippets.

@Bhavdip
Last active October 9, 2017 13:55
Show Gist options
  • Save Bhavdip/259088e0f5745e1a3bb9a4db85357acc to your computer and use it in GitHub Desktop.
Save Bhavdip/259088e0f5745e1a3bb9a4db85357acc to your computer and use it in GitHub Desktop.
kotlin_tips_part2

Configuring Android Studio with Kotlin

@Bhavdip
Copy link
Author

Bhavdip commented Oct 9, 2017

Elivs operator

The Elivs operator is represented by a question mark followed by colon (?:) and has such syntax:

first operand ?: second operand

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.

val correct  = quiz.currentQuestion?.answer?.correct ?: false 

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment