Exlist
Extended functions of lists in the Elixir like summation,append,prepend and some other time saving code lines
Installation
If available in Hex, the package can be installed as:
- Add
exlist
to your list of dependencies inmix.exs
:
```elixir
def deps do
[{:exlist, "~> 0.1.0"}]
end
```
- Ensure
exlist
is started before your application:
```elixir
def application do
[applications: [:exlist]]
end
```