The Collectable Protocol
Understand how the collectable protocol works in Elixir.
We'll cover the following...
Introduction
The Enumerable
protocol lets us iterate over the elements in a type. Given a collection, we can get the elements. The Collectable
protocol is in some sense the opposite. It allows us to ...