Hoogle Search

Within LTS Haskell 24.4 (ghc-9.10.2)

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

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

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

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

    monads-tf Control.Monad.Reader

    Transform the value returned by a Reader.

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

    monads-tf Control.Monad.Reader

    Transform the computation inside a ReaderT.

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

    monads-tf Control.Monad.State.Lazy

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

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

    monads-tf Control.Monad.State.Lazy

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

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

    monads-tf Control.Monad.State.Strict

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

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

    monads-tf Control.Monad.State.Strict

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

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

    monads-tf Control.Monad.Writer.Lazy

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

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

    monads-tf Control.Monad.Writer.Lazy

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

Page 223 of many | Previous | Next