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

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

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

  4. mapMaybe :: forall (m :: Type -> Type) a b . 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

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

  6. mapRequestHeaders :: (RequestHeaders -> RequestHeaders) -> Request -> Request

    wai Network.Wai

    Apply the provided function to the request header list of the Request.

  7. mapResponseHeaders :: (ResponseHeaders -> ResponseHeaders) -> Response -> Response

    wai Network.Wai

    Apply the provided function to the response header list of the Response.

  8. mapResponseStatus :: (Status -> Status) -> Response -> Response

    wai Network.Wai

    Apply the provided function to the response status of the Response.

  9. mapping :: forall (f :: Type -> Type) (g :: Type -> Type) s t a b . (Functor f, Functor g) => AnIso s t a b -> Iso (f s) (g t) (f a) (g b)

    gogol-core Gogol.Prelude

    This can be used to lift any Iso into an arbitrary Functor.

  10. mapConcurrently :: (MonadUnliftIO m, Traversable t) => (a -> m b) -> t a -> m (t b)

    unliftio UnliftIO.Async

    Executes a Traversable container of items concurrently, it uses the Flat type internally.

Page 120 of many | Previous | Next