Hoogle Search

Within LTS Haskell 24.40 (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

    mtl-prelude MTLPrelude

    Map the unwrapped computation using the given function.

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

    mtl-prelude MTLPrelude

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

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

    mtl-prelude MTLPrelude

    Map the inner computation using the given function.

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

    mtl-prelude MTLPrelude

    Transform the value returned by a Reader.

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

    mtl-prelude MTLPrelude

    Transform the computation inside a ReaderT.

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

    mtl-prelude MTLPrelude

    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

    mtl-prelude MTLPrelude

    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

    mtl-prelude MTLPrelude

    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

    mtl-prelude MTLPrelude

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

  10. mapParseError :: Ord e' => (e -> e') -> ParseError s e -> ParseError s e'

    network-uri-template Network.URI.Template.Internal.Parse

    Modify the custom data component in a parse error. This could be done via fmap if not for the Ord constraint.

Page 351 of many | Previous | Next