README.md

**`ALTSTD`**

Complementary data structures and algorithms for the standard lib.

[![Hex Version](https://img.shields.io/hexpm/v/altstd.svg?style=flat-square)](https://hex.pm/packages/altstd) [![Docs](https://img.shields.io/badge/api-docs-orange.svg?style=flat-square)](https://hexdocs.pm/altstd) [![Hex downloads](https://img.shields.io/hexpm/dt/altstd.svg?style=flat-square)](https://hex.pm/packages/altstd) [![GitHub](https://img.shields.io/badge/vcs-GitHub-blue.svg?style=flat-square)](https://github.com/ertgl/altstd) [![MIT License](https://img.shields.io/hexpm/l/altstd.svg?style=flat-square)](LICENSE.txt)

---

</br>

**`Installation`**


The package is [available in Hex](https://hex.pm/packages/altstd), it can be installed
by adding `:altstd` to your list of dependencies in `mix.exs`:

```elixir
def application() do
	[
		extra_applications: [
			:altstd,
		],
	]
end

def deps() do
	[
		{:altstd, "~> 0.1.0"},
	]
end
```