Hoogle Search
Within LTS Haskell 24.28 (ghc-9.10.3)
Note that Stackage only displays results for the latest LTS and Nightly snapshot. Learn more.
mapWriterT :: (m (a, w) -> n (b, w')) -> WriterT w m a -> WriterT w' n bdunai Control.Monad.Trans.MSF.Writer Map both the return value and output of a computation using the given function.
runWriterT (mapWriterT f m) = f (runWriterT m)
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.
mappendFrom :: forall n (m :: Type -> Type) . (Monoid n, Monad m) => n -> MSF m n ndunai Data.MonadicStreamFunction.Util Accumulate the inputs, starting from an initial monoid value.
mappendS :: forall n (m :: Type -> Type) . (Monoid n, Monad m) => MSF m n ndunai Data.MonadicStreamFunction.Util Accumulate the inputs, starting from mempty.
mapName :: (n -> n') -> Expr n v e -> Expr n' v eegison-pattern-src Language.Egison.Syntax.Pattern.Combinator Map over n in Expr n v e.
mapValueExpr :: (e -> e') -> Expr n v e -> Expr n v e'egison-pattern-src Language.Egison.Syntax.Pattern.Combinator Map over e in Expr n v e.
mapVarName :: (v -> v') -> Expr n v e -> Expr n v' eegison-pattern-src Language.Egison.Syntax.Pattern.Combinator Map over v in Expr n v e.
mapBoth :: (a -> c) -> (b -> d) -> Either a b -> Either c deither-unwrap Data.Either.Unwrap The mapBoth function takes two functions and applies the first if iff the value takes the form 'Left _' and the second if the value takes the form 'Right _'.
mapLeft :: (a -> c) -> Either a b -> Either c beither-unwrap Data.Either.Unwrap The mapLeft function takes a function and applies it to an Either value iff the value takes the form 'Left _'.
mapRight :: (b -> c) -> Either a b -> Either a ceither-unwrap Data.Either.Unwrap The mapLeft function takes a function and applies it to an Either value iff the value takes the form 'Left _'.