Chapter 10. Collections central: Enumerable and Enumerator

 

In this chapter

  • Mixing Enumerable into your classes
  • The use of Enumerable methods in collection objects
  • Strings as quasi-enumerable objects
  • Sorting enumerables with the Comparable module
  • Enumerators

 

All collection objects aren’t created equal—but an awful lot of them have many characteristics in common. In Ruby, common characteristics among many objects tend to reside in modules. Collections are no exception: collection objects in Ruby typically include the Enumerable module.

Classes that use Enumerable enter into a kind of contract: the class has to define an instance method called each, and in return, Enumerable endows the objects of the class with all sorts of collection-related ...

Get The Well-Grounded Rubyist 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.