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.
mapAccumR :: (a -> Char -> (a, Char)) -> a -> Text -> (a, Text)miso Miso.String The mapAccumR function behaves like a combination of map and a strict foldr; it applies a function to each element of a Text, passing an accumulating parameter from right to left, and returning a final value of this accumulator together with the new Text. Performs replacement on invalid scalar values.
mapAction :: (actionA -> actionB) -> Transition actionA model r -> Transition actionB model rmiso Miso.Types Turn a transition that schedules subscriptions that consume actions of type a into a transition that schedules subscriptions that consume actions of type b using the supplied function of type a -> b.
-
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.