Search⌘ K

The Available Types

Explore the different types Elixir supports for protocol implementations such as Atom, Integer, List, and Map. Understand how the special Any type works and how to organize implementations to handle polymorphic functions effectively in Elixir protocols.

We'll cover the following...

Introduction

We can define implementations for one or more of the following types:

  • Any
  • Atom
  • BitString
  • Float
...
  • Reference
  • Tuple
  • Integer
  • List
...