Maps an iterable object using the given transform. Unlike Array#map, this doesn't create a new Array in memory, the transform is done on iteration.
Array#map
Transforms each element as it's requested.
Maps an iterable object using the given transform. Unlike
Array#map, this doesn't create a new Array in memory, the transform is done on iteration.