Hoogle Search
Within LTS Haskell 24.51 (ghc-9.10.3)
Note that Stackage only displays results for the latest LTS and Nightly snapshot. Learn more.
foldMapM :: (Monad m, Monoid w) => (a -> m w) -> ConduitT a o m wconduit Data.Conduit.Combinators Apply the provided monadic mapping function and monoidal combine all values. Subject to fusion
foldMapME :: (Monad m, MonoFoldable mono, Monoid w) => (Element mono -> m w) -> ConduitT mono o m wconduit Data.Conduit.Combinators Apply the provided monadic mapping function and monoidal combine all elements in the chunked stream. Subject to fusion
-
conduit Data.Conduit.Combinators Apply a monomorphic transformation to all elements in a chunked stream. Unlike mapE, this will work on types like ByteString and Text which are MonoFunctor but not Functor. Subject to fusion
-
conduit Data.Conduit.Combinators Apply a monadic monomorphic transformation to all elements in a chunked stream. Unlike mapME, this will work on types like ByteString and Text which are MonoFunctor but not Functor. Subject to fusion
concatMapMS :: (Monad m, MonoFoldable mono) => (a -> m mono) -> StreamConduit a m (Element mono)conduit Data.Conduit.Combinators.Stream No documentation available.
-
conduit Data.Conduit.Combinators.Stream No documentation available.
concatMapAccumMS :: Monad m => (a -> accum -> m (accum, [b])) -> accum -> StreamConduit a m bconduit Data.Conduit.Internal.List.Stream No documentation available.
-
conduit Data.Conduit.Internal.List.Stream No documentation available.
concatMapMS :: Monad m => (a -> m [b]) -> StreamConduit a m bconduit Data.Conduit.Internal.List.Stream No documentation available.
concatMapS :: forall (m :: Type -> Type) a b . Monad m => (a -> [b]) -> StreamConduit a m bconduit Data.Conduit.Internal.List.Stream No documentation available.