https://github.com/blackode/exlist
Extended functions of lists in the Elixir like summation,append,prepend and some other time saving code lines
https://github.com/blackode/exlist
Last synced: 8 months ago
JSON representation
Extended functions of lists in the Elixir like summation,append,prepend and some other time saving code lines
- Host: GitHub
- URL: https://github.com/blackode/exlist
- Owner: blackode
- Created: 2016-07-31T23:42:53.000Z (almost 10 years ago)
- Default Branch: master
- Last Pushed: 2017-01-04T18:43:22.000Z (over 9 years ago)
- Last Synced: 2025-02-01T17:11:13.382Z (over 1 year ago)
- Language: Elixir
- Size: 5.86 KB
- Stars: 4
- Watchers: 1
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# 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
```