drinkery-0.3: Boozy streaming library

Safe HaskellSafe
LanguageHaskell2010

Data.Drinkery.Combinators

Documentation

foldlFrom' :: (Foldable t, Monad m) => m (t a) -> (b -> a -> b) -> b -> m b Source #

foldMFrom :: (Foldable t, Monad m) => m (t a) -> (b -> a -> m b) -> b -> m b Source #

traverseFrom_ :: (Foldable t, Monad m) => m (t a) -> (a -> m b) -> m () Source #

drainFrom :: (Foldable t, Monad m) => m (t a) -> m () Source #

lastFrom :: (Alternative t, Foldable t, Monad m) => m (t a) -> m (Maybe a) Source #