Packages

The extended functions of the lists which are not available in the default List Module and some basic mathematical operations on the list alog with some regular functions

Current section

Files

Jump to
exlist README.md
Raw

README.md

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