Releases: purescript/purescript-arrays
Releases · purescript/purescript-arrays
v4.1.1
v4.1.0
- Batch update and modify functions (@matthewleon)
- Partial functions for ST arrays (@matthewleon)
v4.0.1
v4.0.0
v3.2.1
v3.2.0
v3.1.0
- Significant performance boosts for the following functions:
head
(nowO(1)
, was accidentallyO(n)
)toUnfoldable
span
difference
- Add
filterA
, which is just likefilterM
, but faster, and it only requires you to have anApplicative
(not necessarily aMonad
). - Deprecate
filterM
in favour offilterA
. In the next major release,filterM
will be removed. - Add
unsnoc
(@joshuahhh).
v3.0.1
v3.0.0
v2.0.0
- Updated dependencies
unsafeIndex
is exported fromData.Array
rather thanData.Array.Partial
now- Array-specialised
replicate
is back - Added stack safe version of
foldM
-foldRecM
(@jutaro) - Array now re-exports functions from
Foldable
andTraversable
that might otherwise seem to be missing (@Risto-Stevcev)