circuithub/elm-array-extra

Convenience functions for working with Array


Keywords
array, elm, elm-core, extra
License
MIT
Install
elm-package install circuithub/elm-array-extra 1.1.2

Documentation

convenience functions for working with Array

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

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.