An open API service indexing awesome lists of open source software.

https://github.com/elm-community/array-extra

convenience functions for working with Array
https://github.com/elm-community/array-extra

array elm elm-core extra

Last synced: about 1 year ago
JSON representation

convenience functions for working with Array

Awesome Lists containing this project

README

          

# convenience functions for working with `Array`

Some people like to import under the same namespace as `Array`:

```elm
import Array exposing (Array)
import Array.Extra as Array

firstFive : Array a -> Array a
firstFive =
Array.sliceUntil 5
```

Note that this API is experimental and likely to go through many more iterations.

Feedback and contributions are very welcome.