# `Numbers.Protocols.Division`

For supporting `Numbers.div/2`.

# `t`

```elixir
@type t() :: term()
```

All the types that implement this protocol.

# `div`

```elixir
@spec div(t(), t()) :: t()
```

Divides the rhs by the lhs.

To be clear, this division operation is supposed to be precise.

---

*Consult [api-reference.md](api-reference.md) for complete listing*
