Last active
January 30, 2016 10:56
-
-
Save iboss-ptk/24a81f91c50dc09abf06 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
// 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