Hoogle Search

Within LTS Haskell 24.39 (ghc-9.10.3)

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

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

    dunai Control.Monad.Trans.MSF.Reader

    Transform the value returned by a Reader.

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

    dunai Control.Monad.Trans.MSF.Reader

    Transform the computation inside a ReaderT.

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

    dunai Control.Monad.Trans.MSF.State

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

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

    dunai Control.Monad.Trans.MSF.State

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

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

    dunai Control.Monad.Trans.MSF.Writer

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

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

    dunai Control.Monad.Trans.MSF.Writer

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

  7. mapMaybeS :: forall (m :: Type -> Type) a b . Monad m => MSF m a b -> MSF m (Maybe a) (Maybe b)

    dunai Data.MonadicStreamFunction.Util

    Apply an MSF to every input. Freezes temporarily if the input is Nothing, and continues as soon as a Just is received.

  8. mappendFrom :: forall n (m :: Type -> Type) . (Monoid n, Monad m) => n -> MSF m n n

    dunai Data.MonadicStreamFunction.Util

    Accumulate the inputs, starting from an initial monoid value.

  9. mappendS :: forall n (m :: Type -> Type) . (Monoid n, Monad m) => MSF m n n

    dunai Data.MonadicStreamFunction.Util

    Accumulate the inputs, starting from mempty.

  10. mapName :: (n -> n') -> Expr n v e -> Expr n' v e

    egison-pattern-src Language.Egison.Syntax.Pattern.Combinator

    Map over n in Expr n v e.

Page 331 of many | Previous | Next