(map f coll)
In this animation, the function map
takes 2 arguments:
f
: a function that takes one argument and returns a valuecoll
: a collection of items
map
returns a new list made of the result of f applied to each item from the collection. Consequently the list returned by map
always contains the same number of items than the collection passed as argument.
In the above animation, f paints into orange each item passed to it.