File tree Expand file tree Collapse file tree 2 files changed +14
-3
lines changed Expand file tree Collapse file tree 2 files changed +14
-3
lines changed Original file line number Diff line number Diff line change 11# Array
22
3- An Elixir wrapper for Erlang's array.
3+ An Elixir wrapper library for Erlang's array.
44
55Supports Access, Enumerable and Collectable protocols.
66
7+ ## Using Array with Mix
8+ To use array in your projects, add array as a dependency:
9+
10+ ```
11+ def deps do
12+ [{:array, "~> 1.0.1"}]
13+ end
14+ ```
15+
16+ Then run ` mix deps.get ` to install it.
17+
718## Example
819
920```
Original file line number Diff line number Diff line change @@ -3,9 +3,9 @@ defmodule Array.Mixfile do
33
44 def project do
55 [ app: :array ,
6- version: "1.0.0 " ,
6+ version: "1.0.1 " ,
77 elixir: ">= 1.0.0" ,
8- description: "An elixir wrapper for Erlang's array." ,
8+ description: "An elixir wrapper library for Erlang's array." ,
99 package: package ,
1010 deps: deps ]
1111 end
You can’t perform that action at this time.
0 commit comments