papa-base-implement-0.2.0: Useful base functions reimplemented

Safe HaskellSafe
LanguageHaskell2010

Papa.Base.Implement.Data.Traversable

Documentation

mapM :: (Traversable t, Applicative f) => (a -> f b) -> t a -> f (t b) Source #

forM :: (Traversable t, Applicative f) => t a -> (a -> f b) -> f (t b) Source #

sequence :: (Traversable t, Applicative f) => t (f a) -> f (t a) Source #