Popularity
4.4
Stable
Activity
0.0
Stable
34
2
9

Monthly Downloads: 2
Programming language: Elixir
License: Apache License 2.0
Latest version: v1.0.1

array alternatives and similar packages

Based on the "Algorithms and Data structures" category.
Alternatively, view array alternatives based on common mentions on social networks and blogs.

Do you think we are missing an alternative of array or a related project?

Add another 'Algorithms and Data structures' Package

README

Array

An Elixir wrapper library for Erlang's array.

Supports Access, Enumerable and Collectable protocols.

Using Array with Mix

To use array in your projects, add array as a dependency:

def deps do
  [{:array, "~> 1.0.1"}]
end

Then run mix deps.get to install it.

Documentation

http://code.void.in/docs/elixir-array/

Example

# Create
arr = Array.new()

# Update
arr = Array.set(arr, 0, 100)

# Access by indices
arr[0] # -> 0
arr[1000] # -> nil

# Convert from/to list
Array.from_list([1,2,3,4,5])
Array.to_list(arr)

# Transform using the Enum module
Array.from_list([1,2,3,4,5]) |> Enum.map(fn x -> 2*x end)
Enum.into(0..100, Array.new())

# Comprehension
for v <- Array.from_list([1,2,3,4,5]), into: Array.new(), do: v*2