Ruby's Collect method Ruby's collect method is part of the Enumerable mixin; a mixin which provides very useful and powerful methods for collection objects. collect is a method I use all the time and recently wrote about in my article Working…| Leigh Halliday's RSS Feed
What is an Enumerable? Enumerable is a Ruby mixin/module which provides a large set of functionality to collection classes. You already know of some objects which are enumerable that come standard in Ruby such as Array and Hash. You can also make…| Leigh Halliday's RSS Feed