Hoogle Search
Within LTS Haskell 24.34 (ghc-9.10.3)
Note that Stackage only displays results for the latest LTS and Nightly snapshot. Learn more.
concatMapAccumM :: Monad m => (a -> accum -> m (accum, [b])) -> accum -> ConduitT a b m ()conduit Data.Conduit.Combinators concatMapM with an accumulator. Subject to fusion
-
conduit Data.Conduit.Combinators Apply the function to each element in the chunked stream, resulting in a foldable value (e.g., a list). Then yield each of the individual values in that foldable value separately. Generalizes concatMap, mapMaybe, and mapFoldable. Subject to fusion
concatMapM :: (Monad m, MonoFoldable mono) => (a -> m mono) -> ConduitT a (Element mono) m ()conduit Data.Conduit.Combinators Apply the monadic function to each value in the stream, resulting in a foldable value (e.g., a list). Then yield each of the individual values in that foldable value separately. Generalizes concatMapM, mapMaybeM, and mapFoldableM. Subject to fusion
foldMap :: forall (m :: Type -> Type) b a o . (Monad m, Monoid b) => (a -> b) -> ConduitT a o m bconduit Data.Conduit.Combinators Apply the provided mapping function and monoidal combine all values. Subject to fusion
-
conduit Data.Conduit.Combinators Apply the provided mapping function and monoidal combine all elements of the chunked stream. Subject to fusion
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.