Skip to content

Instantly share code, notes, and snippets.

@yayaa
Last active January 9, 2019 22:19
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 yayaa/233f9b45f7da64453a34883b24d43abb to your computer and use it in GitHub Desktop.
Save yayaa/233f9b45f7da64453a34883b24d43abb to your computer and use it in GitHub Desktop.
Improving the code - 2
fun main() {
getFruits()
.filter { it.name != null }
.filter { !it.isRotten }
.filter { it.color == Color.ORANGE }
.forEach { println("Yay! It's an orange ${it.name}") }
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment