Module

Data.List.Fast

Package
purescript-lists-fast
Repository
paf31/purescript-lists-fast

Faster replacements for common methods on linked lists, which exploit mutation under the hood.

#map Source

map :: forall b a. (a -> b) -> List a -> List b

#filter Source

filter :: forall a. (a -> Boolean) -> List a -> List a

#zipWith Source

zipWith :: forall c b a. Fn2 a b c -> List a -> List b -> List c