Skip to content

Instantly share code, notes, and snippets.

@iboss-ptk
Last active January 30, 2016 10:56
Show Gist options
  • Save iboss-ptk/24a81f91c50dc09abf06 to your computer and use it in GitHub Desktop.
Save iboss-ptk/24a81f91c50dc09abf06 to your computer and use it in GitHub Desktop.
// map each element to a key-value pair of id and the book object itself
val bookMap = books.map(book => (book.id, book)).toMap
bookMap(1) // => Book(1,The Pragmatic Programmer,List(Andrew Hunt, Dave Thomas),4.3)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment