README.md

# NetAddress

## Elixir Network Address convenience modules.

Makes working with Elixir IP tools (which is way better than langs with no
structured IP datatype), even even better by giving access to Elixir things,
like Enum and guards.

Also provides tools for Mac Addresses

## Testing

From the package directory, you can run `mix test` to test this package.

Coverage reports can be generated by running `mix coveralls.html`, and the
coverage report will land in `cover/`.

## Documentation

Documentation should appear at the following web location:

https://hexdocs.pm/net_address


## Installation/Usage

This package is published in hex.

In order to add this to your project, use the following invocation in your
mix.exs file:

```elixir
def deps do
  [
    {:net_address, "~> 0.1.4"}
  ]
end
```