Skip to content

Instantly share code, notes, and snippets.

@PatilShreyas
Last active December 24, 2020 12:18
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save PatilShreyas/b6b33bfcf6542a1344ad86baa78c7c17 to your computer and use it in GitHub Desktop.
Save PatilShreyas/b6b33bfcf6542a1344ad86baa78c7c17 to your computer and use it in GitHub Desktop.
fun doSomething() {
// also {}
val users = userRepository.getAllUsers().also { println("All users: $it") }
// run {}
users.run {
val adminUsers = filter { it.isAdmin }
val totalCount = count()
}
// with()
with(users) {
val firstUser = first()
val lastUser = last()
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment