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.
-
monad-coroutine Control.Monad.Coroutine Modify the first upcoming suspension of a Coroutine.
-
monad-coroutine Control.Monad.Coroutine Change the base monad of a Coroutine.
-
monad-coroutine Control.Monad.Coroutine Change the suspension functor of a Coroutine.
-
monad-coroutine Control.Monad.Coroutine.Nested Change the suspension functor of a nested Coroutine.
mapLogStrBS :: ToLogStr msg => (ByteString -> msg) -> LogStr -> LogStrmonad-logger-extras Control.Monad.Logger.Extras Map a function over a log string.
mapExn :: forall e2 e1 (m :: Type -> Type) . (e2 -> e1) -> (e1 -> Maybe e2) -> Exn m e1 -> Exn m e2monadology Control.Monad.Ology.Data.Exn No documentation available.
mapCont :: (r -> r) -> Cont r a -> Cont r amonadology Control.Monad.Ology.Specific.ContT Apply a function to transform the result of a continuation-passing computation.
mapExcept :: (Either e a -> Either e' b) -> Except e a -> Except e' bmonadology Control.Monad.Ology.Specific.ExceptT Map the unwrapped computation using the given function.
mapExceptT :: (m (Either e a) -> n (Either e' b)) -> ExceptT e m a -> ExceptT e' n bmonadology Control.Monad.Ology.Specific.ExceptT Map the unwrapped computation using the given function.
runExceptT (mapExceptT f m) = f (runExceptT m)
mapMaybeT :: (m (Maybe a) -> n (Maybe b)) -> MaybeT m a -> MaybeT n bmonadology Control.Monad.Ology.Specific.MaybeT Transform the computation inside a MaybeT.