Hoogle Search

Within LTS Haskell 24.35 (ghc-9.10.3)

Note that Stackage only displays results for the latest LTS and Nightly snapshot. Learn more.

  1. concatMapAccumC :: forall (m :: Type -> Type) a accum b . Monad m => (a -> accum -> (accum, [b])) -> accum -> ConduitT a b m ()

    conduit Conduit

    concatMap with an accumulator.

  2. concatMapAccumMC :: Monad m => (a -> accum -> m (accum, [b])) -> accum -> ConduitT a b m ()

    conduit Conduit

    concatMapM with an accumulator.

  3. concatMapC :: forall (m :: Type -> Type) mono a . (Monad m, MonoFoldable mono) => (a -> mono) -> ConduitT a (Element mono) m ()

    conduit Conduit

    Apply the 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 concatMap, mapMaybe, and mapFoldable.

  4. concatMapCE :: forall (m :: Type -> Type) mono w . (Monad m, MonoFoldable mono, Monoid w) => (Element mono -> w) -> ConduitT mono w m ()

    conduit Conduit

    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.

  5. concatMapMC :: (Monad m, MonoFoldable mono) => (a -> m mono) -> ConduitT a (Element mono) m ()

    conduit Conduit

    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.

  6. foldMapC :: forall (m :: Type -> Type) b a o . (Monad m, Monoid b) => (a -> b) -> ConduitT a o m b

    conduit Conduit

    Apply the provided mapping function and monoidal combine all values.

  7. foldMapCE :: forall (m :: Type -> Type) mono w o . (Monad m, MonoFoldable mono, Monoid w) => (Element mono -> w) -> ConduitT mono o m w

    conduit Conduit

    Apply the provided mapping function and monoidal combine all elements of the chunked stream.

  8. foldMapMC :: (Monad m, Monoid w) => (a -> m w) -> ConduitT a o m w

    conduit Conduit

    Apply the provided monadic mapping function and monoidal combine all values.

  9. foldMapMCE :: (Monad m, MonoFoldable mono, Monoid w) => (Element mono -> m w) -> ConduitT mono o m w

    conduit Conduit

    Apply the provided monadic mapping function and monoidal combine all elements in the chunked stream.

  10. omapCE :: forall (m :: Type -> Type) mono . (Monad m, MonoFunctor mono) => (Element mono -> Element mono) -> ConduitT mono mono m ()

    conduit Conduit

    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.

Page 425 of many | Previous | Next