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.
-
matrix-static Data.Matrix.Static O(rows*cols). Map a function over a row. The bounds of the row parameter is not checked and might throw an error. Example:
( 1 2 3 ) ( 1 2 3 ) ( 4 5 6 ) ( 5 6 7 ) mapRowUnsafe (\_ x -> x + 1) 2 ( 7 8 9 ) = ( 7 8 9 )
mapSub :: (actionA -> actionB) -> Sub actionA -> Sub actionBmiso Miso.Effect Turn a subscription that consumes actions of type a into a subscription that consumes actions of type b using the supplied function of type a -> b.
mapAccumL :: (a -> Char -> (a, Char)) -> a -> Text -> (a, Text)miso Miso.String O(n) Like a combination of map and foldl'. Applies a function to each element of a Text, passing an accumulating parameter from left to right, and returns a final Text. Performs replacement on invalid scalar values.
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.