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. mapExceptT :: (m (Either e a) -> n (Either e' b)) -> ExceptT e m a -> ExceptT e' n b

    monadology Control.Monad.Ology.Specific.ExceptT

    Map the unwrapped computation using the given function.

  2. mapMaybeT :: (m (Maybe a) -> n (Maybe b)) -> MaybeT m a -> MaybeT n b

    monadology Control.Monad.Ology.Specific.MaybeT

    Transform the computation inside a MaybeT.

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

    monadology Control.Monad.Ology.Specific.ReaderT

    Transform the value returned by a Reader.

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

    monadology Control.Monad.Ology.Specific.ReaderT

    Transform the computation inside a ReaderT.

  5. mapResultFailure :: (e1 -> e2) -> Result e1 a -> Result e2 a

    monadology Control.Monad.Ology.Specific.Result

    No documentation available.

  6. mapState :: ((a, s) -> (b, s)) -> State s a -> State s b

    monadology Control.Monad.Ology.Specific.StateT

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

  7. mapStateT :: (m (a, s) -> n (b, s)) -> StateT s m a -> StateT s n b

    monadology Control.Monad.Ology.Specific.StateT

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

  8. mapWriter :: ((a, w) -> (b, w')) -> Writer w a -> Writer w' b

    monadology Control.Monad.Ology.Specific.WriterT

    Map both the return value and output of a computation using the given function.

  9. mapWriterT :: (m (a, w) -> n (b, w')) -> WriterT w m a -> WriterT w' n b

    monadology Control.Monad.Ology.Specific.WriterT

    Map both the return value and output of a computation using the given function.

  10. mapFst :: (a -> c) -> (a, b) -> (c, b)

    monoid-transformer Data.Monoid.State

    No documentation available.

Page 309 of many | Previous | Next