Hoogle Search

Within LTS Haskell 22.20 (ghc-9.6.4)

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

  1. map :: Monad m => (a -> b) -> ConduitT a b m ()

    conduit Data.Conduit.List

    Apply a transformation to all values in a stream. Subject to fusion Since 0.3.0

  2. mapAccum :: Monad m => (a -> s -> (s, b)) -> s -> ConduitT a b m s

    conduit Data.Conduit.List

    Analog of mapAccumL for lists. Note that in contrast to mapAccumL, the function argument takes the accumulator as its second argument, not its first argument, and the accumulated value is strict. Subject to fusion Since 1.1.1

  3. mapAccumM :: Monad m => (a -> s -> m (s, b)) -> s -> ConduitT a b m s

    conduit Data.Conduit.List

    Monadic mapAccum. Subject to fusion Since 1.1.1

  4. mapFoldable :: (Monad m, Foldable f) => (a -> f b) -> ConduitT a b m ()

    conduit Data.Conduit.List

    Generalization of mapMaybe and concatMap. It applies function to all values in a stream and send values inside resulting Foldable downstream. Subject to fusion Since 1.0.6

  5. mapFoldableM :: (Monad m, Foldable f) => (a -> m (f b)) -> ConduitT a b m ()

    conduit Data.Conduit.List

    Monadic variant of mapFoldable. Subject to fusion Since 1.0.6

  6. mapM :: Monad m => (a -> m b) -> ConduitT a b m ()

    conduit Data.Conduit.List

    Apply a monadic transformation to all values in a stream. If you do not need the transformed values, and instead just want the monadic side-effects of running the action, see mapM_. Subject to fusion Since 0.3.0

  7. mapM_ :: Monad m => (a -> m ()) -> ConduitT a o m ()

    conduit Data.Conduit.List

    Apply the action to all values in the stream. Subject to fusion Since 0.3.0

  8. mapMaybe :: Monad m => (a -> Maybe b) -> ConduitT a b m ()

    conduit Data.Conduit.List

    Apply a transformation that may fail to all values in a stream, discarding the failures. Subject to fusion Since 0.5.1

  9. mapMaybeM :: Monad m => (a -> m (Maybe b)) -> ConduitT a b m ()

    conduit Data.Conduit.List

    Apply a monadic transformation that may fail to all values in a stream, discarding the failures. Subject to fusion Since 0.5.1

  10. concatMap :: Monad m => (a -> [b]) -> ConduitT a b m ()

    conduit Data.Conduit.List

    Apply a transformation to all values in a stream, concatenating the output values. Subject to fusion Since 0.3.0

Page 1 of 2 | Next