Skip to content

Instantly share code, notes, and snippets.

@Audhil
Created February 27, 2020 10:01
Show Gist options
  • Save Audhil/9c45c858f7d1dc0b931857745819ebc4 to your computer and use it in GitHub Desktop.
Save Audhil/9c45c858f7d1dc0b931857745819ebc4 to your computer and use it in GitHub Desktop.
kotlin scope function
fun main() {
val valueIs = "Jack and jill went up the hill!"
val result = valueIs.also {
it.contains("jill")
}
println(valueIs) // o/p - Jack and jill went up the hill!
println(result) // o/p - Jack and jill went up the hill!
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment