README.md

# Bounds

A library for generic Elixir intervals, formalizing Erlang's `{pos, len}` tuples
into an ADT with many supported operations.

Documentation can be found at [https://hexdocs.pm/bounds](https://hexdocs.pm/bounds).

## Installation

Bounds can be installed by adding `bounds` to your list of dependencies
in `mix.exs`:

```elixir
def deps do
  [
    {:bounds, "~> 0.1.0"}
  ]
end
```