Data.TraversableWithIndex
- Package
- purescript-foldable-traversable
- Repository
- purescript/purescript-foldable-traversable
#TraversableWithIndex Source
class (FunctorWithIndex i t, FoldableWithIndex i t, Traversable t) <= TraversableWithIndex i t | t -> i whereA Traversable with an additional index.
A TraversableWithIndex instance must be compatible with its
Traversable instance
traverse f = traverseWithIndex (const f)
with its FoldableWithIndex instance
foldMapWithIndex f = unwrap <<< traverseWithIndex (\i -> Const <<< f i)
and with its FunctorWithIndex instance
mapWithIndex f = unwrap <<< traverseWithIndex (\i -> Identity <<< f i)
A default implementation is provided by traverseWithIndexDefault.
Members
traverseWithIndex :: forall m b a. Applicative m => (i -> a -> m b) -> t a -> m (t b)
Instances
#traverseWithIndexDefault Source
traverseWithIndexDefault :: forall m b a t i. TraversableWithIndex i t => Applicative m => (i -> a -> m b) -> t a -> m (t b)A default implementation of traverseWithIndex using sequence and mapWithIndex.
#forWithIndex Source
forWithIndex :: forall t m b a i. Applicative m => TraversableWithIndex i t => t a -> (i -> a -> m b) -> m (t b)A version of traverseWithIndex with its arguments flipped.
This can be useful when running an action written using do notation for every element in a data structure:
For example:
for [1, 2, 3] \i x -> do
logShow i
pure (x * x)
#scanlWithIndex Source
scanlWithIndex :: forall f b a i. TraversableWithIndex i f => (i -> b -> a -> b) -> b -> f a -> f bFold a data structure from the left with access to the indices, keeping
all intermediate results instead of only the final result. Note that the
initial value does not appear in the result (unlike Haskell's
Prelude.scanl).
scanlWithIndex (\i y x -> i + y + x) 0 [1, 2, 3] = [1, 4, 9]
#mapAccumLWithIndex Source
mapAccumLWithIndex :: forall f s b a i. TraversableWithIndex i f => (i -> s -> a -> Accum s b) -> s -> f a -> Accum s (f b)Fold a data structure from the left with access to the indices, keeping all intermediate results instead of only the final result.
Unlike scanlWithIndex, mapAccumLWithIndex allows the type of accumulator to differ
from the element type of the final data structure.
#scanrWithIndex Source
scanrWithIndex :: forall f b a i. TraversableWithIndex i f => (i -> a -> b -> b) -> b -> f a -> f bFold a data structure from the right with access to the indices, keeping
all intermediate results instead of only the final result. Note that the
initial value does not appear in the result (unlike Haskell's Prelude.scanr).
scanrWithIndex (\i x y -> i + x + y) 0 [1, 2, 3] = [9, 8, 5]
#mapAccumRWithIndex Source
mapAccumRWithIndex :: forall f s b a i. TraversableWithIndex i f => (i -> s -> a -> Accum s b) -> s -> f a -> Accum s (f b)Fold a data structure from the right with access to the indices, keeping all intermediate results instead of only the final result.
Unlike scanrWithIndex, imapAccumRWithIndex allows the type of accumulator to differ
from the element type of the final data structure.
#traverseDefault Source
traverseDefault :: forall m b a t i. TraversableWithIndex i t => Applicative m => (a -> m b) -> t a -> m (t b)A default implementation of traverse in terms of traverseWithIndex