In Ruby, is there any difference between the functionalities of each, map, and collect?
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
|
||||
|
|
|
There's also
|
||||
|
|
|
Each will evaluate the block but throws away the result of each block's evaluation and returns the original array.
Map/collect returns an array constructed as the result of calling the block for each item in the array.
|
||||
|
|
