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/261286ac7a315f93105f14808b98217a to your computer and use it in GitHub Desktop.
Save yayaa/261286ac7a315f93105f14808b98217a to your computer and use it in GitHub Desktop.
Improving the code - 3
fun main() {
getFruits()
.asSequence()
.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