Specifying a Type

Understand the specific types of Elixir.

A type is simply a subset of all possible values in a language. For example, the type integer means all the possible integer values but excludes lists, binaries, PIDs, and so on.

The basic types in Elixir are as ...