Skip to content

Instantly share code, notes, and snippets.

@Y-E-P
Forked from AkshayChordiya/TakeIfExample.kt
Created November 30, 2017 12:05
Show Gist options
  • Save Y-E-P/a51e1fadc15fb30321f2c4cc84ddcb19 to your computer and use it in GitHub Desktop.
Save Y-E-P/a51e1fadc15fb30321f2c4cc84ddcb19 to your computer and use it in GitHub Desktop.
Example of takeIf function in Kotlin
val index = "Kotlin".indexOf('K').takeIf { it > 0 } ?: 0
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment