Cabal-3.2.1.0: A framework for packaging Haskell software
Safe Haskell None
Language Haskell2010

Distribution.Utils.MapAccum

Synopsis

Documentation

mapAccumM :: ( Monad m, Traversable t) => (a -> b -> m (a, c)) -> a -> t b -> m (a, t c) Source #

Monadic variant of mapAccumL .