Hoogle Search

Within LTS Haskell 24.38 (ghc-9.10.3)

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

  1. mapLoggingT :: (m a -> n b) -> LoggingT m a -> LoggingT n b

    monad-logger-aeson Control.Monad.Logger.Aeson

    Map the unwrapped computation using the given function.

  2. mapNoLoggingT :: (m a -> n b) -> NoLoggingT m a -> NoLoggingT n b

    monad-logger-aeson Control.Monad.Logger.Aeson

    Map the unwrapped computation using the given function.

  3. mapCont :: (r -> r) -> Cont r a -> Cont r a

    monads-tf Control.Monad.Cont

    Apply a function to transform the result of a continuation-passing computation.

  4. mapExceptT :: (m (Either e a) -> n (Either e' b)) -> ExceptT e m a -> ExceptT e' n b

    monads-tf Control.Monad.Except

    Map the unwrapped computation using the given function.

  5. mapRWS :: ((a, s, w) -> (b, s, w')) -> RWS r w s a -> RWS r w' s b

    monads-tf Control.Monad.RWS.Lazy

    Map the return value, final state and output of a computation using the given function.

  6. mapRWST :: (m (a, s, w) -> n (b, s, w')) -> RWST r w s m a -> RWST r w' s n b

    monads-tf Control.Monad.RWS.Lazy

    Map the inner computation using the given function.

  7. mapRWS :: ((a, s, w) -> (b, s, w')) -> RWS r w s a -> RWS r w' s b

    monads-tf Control.Monad.RWS.Strict

    Map the return value, final state and output of a computation using the given function.

  8. mapRWST :: (m (a, s, w) -> n (b, s, w')) -> RWST r w s m a -> RWST r w' s n b

    monads-tf Control.Monad.RWS.Strict

    Map the inner computation using the given function.

  9. mapReader :: (a -> b) -> Reader r a -> Reader r b

    monads-tf Control.Monad.Reader

    Transform the value returned by a Reader.

  10. mapReaderT :: (m a -> n b) -> ReaderT r m a -> ReaderT r n b

    monads-tf Control.Monad.Reader

    Transform the computation inside a ReaderT.

Page 224 of many | Previous | Next