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.

  1. mapFoldableMS :: (Monad m, Foldable f) => (a -> m (f b)) -> StreamConduit a m b

    conduit Data.Conduit.Internal.List.Stream

    No documentation available.

  2. mapFoldableS :: forall (m :: Type -> Type) f a b . (Monad m, Foldable f) => (a -> f b) -> StreamConduit a m b

    conduit Data.Conduit.Internal.List.Stream

    No documentation available.

  3. mapMS :: Monad m => (a -> m b) -> StreamConduit a m b

    conduit Data.Conduit.Internal.List.Stream

    No documentation available.

  4. mapM_S :: Monad m => (a -> m ()) -> StreamConsumer a m ()

    conduit Data.Conduit.Internal.List.Stream

    No documentation available.

  5. mapMaybeMS :: Monad m => (a -> m (Maybe b)) -> StreamConduit a m b

    conduit Data.Conduit.Internal.List.Stream

    No documentation available.

  6. mapMaybeS :: forall (m :: Type -> Type) a b . Monad m => (a -> Maybe b) -> StreamConduit a m b

    conduit Data.Conduit.Internal.List.Stream

    No documentation available.

  7. mapS :: forall (m :: Type -> Type) a b . Monad m => (a -> b) -> StreamConduit a m b

    conduit Data.Conduit.Internal.List.Stream

    No documentation available.

  8. mapAccum :: forall (m :: Type -> Type) a s b . 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

  9. 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

  10. mapFoldable :: forall (m :: Type -> Type) f a b . (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

Page 119 of many | Previous | Next