3. Collections
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 ...
Get Effective Ruby: 48 Specific Ways to Write Better Ruby now with the O’Reilly learning platform.
O’Reilly members experience books, live events, courses curated by job role, and more from O’Reilly and nearly 200 top publishers.