Skip to content

Instantly share code, notes, and snippets.

@iboss-ptk
Created January 30, 2016 12:03
Show Gist options
  • Save iboss-ptk/0610ad23939cf1212a40 to your computer and use it in GitHub Desktop.
Save iboss-ptk/0610ad23939cf1212a40 to your computer and use it in GitHub Desktop.
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