September 2014
Intermediate to advanced
240 pages
7h 2m
English
It’s tempting to think of Ruby’s collection classes as containers. If you squint and focus on the two rock stars of the core library, Array and Hash, this is certainly true. But what about the often-used Range class? Is it a container? Does having an each method and including the Enumerable module make a class a container?
Alright...I might have stretched that a bit far. You already know that Ruby has several classes that are clearly not containers but use Enumerable. That’s why we throw around the term “collection,” which is sometimes synonymous with “container,” but obviously not always. The first classes you probably played around with while learning Ruby are either Array or Hash. That’s because they’re really simple to use ...