What is the difference between the map and flatMap functions of Iterable?
| ||||
|
feedback
|
|
Here is a pretty good explanation: http://www.codecommit.com/blog/scala/scala-collections-for-the-easily-bored-part-2 Using list as an example: Map's signature is:
and flatMap's is
So flatMap takes a type [A] and returns an iterable type [B] and map takes a type [A] and returns a type [B] This will also give you an idea that flatmap will "flatten" lists.
| |||||||||
feedback
|
|
The above is all true, but there is one more thing that is handy: | ||||
feedback
|
You can see this better in for comprehensions:
this translates into:
Each iterator inside for will be translated into a "flatMap", except the last one, which gets translated into a "map". This way, instead of returning nested collections (a list of an array of a buffer of blah, blah, blah), you return a flat collection. A collection formed by the elements being yield'ed -- a list of Integers, in this case. | |||
|
feedback
|
|
From scaladoc:
| |||||||||
feedback
|
|
Look here: http://www.codecommit.com/blog/scala/scala-collections-for-the-easily-bored-part-2 "Search for flatMap" - there is a really good explanation of it there. (Basically it is a combination of "flatten" and "map" -- features from other languages). | |||
|
feedback
|