Skip to content

Commit

Permalink
Adds reference to ArraysAja also to arrays.ex moduledoc
Browse files Browse the repository at this point in the history
  • Loading branch information
Qqwy committed Sep 10, 2021
1 parent ae3c3f3 commit 1582821
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
2 changes: 1 addition & 1 deletion README.md
Expand Up @@ -104,7 +104,7 @@ Which array implementation/representation is actually used, can then later be co

By default, the MapArray implementation is used when creating new array objects, but this can be configured by either changing the default in your whole application, or by passing an option to a specific invocation of [`new/0-2`](`new/0`), or [`empty/0-1`](`empty/0`).

Implementations provided by other libraryes:
Implementations provided by other libraries:

- [ArraysAja](https://github.com/Qqwy/elixir-arrays_aja) adds support for [Aja](https://github.com/sabiwara/aja)'s `A.Vector`, which is an implementation of a 'Hickey Trie' vector. For most operations, it significantly outperforms `ErlangArray` and `MapArray`.

Expand Down
5 changes: 5 additions & 0 deletions lib/arrays.ex
Expand Up @@ -73,6 +73,11 @@ contents = quote [location: :keep] do
By default, #{@default_array_implementation} is used when creating new array objects, but this can be configured by either changing the default in your whole application, or by passing an option to a specific invocation of [`new/0-2`](`new/0`), or [`empty/0-1`](`empty/0`).
Implementations provided by other libraries:
- [ArraysAja](https://github.com/Qqwy/elixir-arrays_aja) adds support for [Aja](https://github.com/sabiwara/aja)'s `A.Vector`, which is an implementation of a 'Hickey Trie' vector. For most operations, it significantly outperforms `ErlangArray` and `MapArray`.
### Protocols
Besides being able to use all functions in this module,
Expand Down

0 comments on commit 1582821

Please sign in to comment.