Created
January 30, 2016 12:03
-
-
Save iboss-ptk/0610ad23939cf1212a40 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
val fourOrMoreRatingBooks = books | |
.filter(book => book.rating > 4.0) | |
.map(book => book.name) | |
// => List(The Pragmatic Programmer, Lean Startup, | |
// Agile Software Development, Principles, Patterns, and Practices, From Zero to One) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment