Hoogle Search
Within LTS Haskell 24.41 (ghc-9.10.3)
Note that Stackage only displays results for the latest LTS and Nightly snapshot. Learn more.
mapM_ :: MonadParallel m => (a -> m b) -> [a] -> m ()monad-parallel Control.Monad.Parallel Like mapM_, but applying the function to the individual list items in parallel.
mapMaybe :: (Key -> Maybe Key) -> IntMultiSet -> IntMultiSetmultiset Data.IntMultiSet O(n). Map and collect the Just results.
mapMonotonic :: (Key -> Key) -> IntMultiSet -> IntMultiSetmultiset Data.IntMultiSet O(n). mapMonotonic f s == map f s, but works only when f is strictly monotonic. The precondition is not checked. Semi-formally, we have:
and [x < y ==> f x < f y | x <- ls, y <- ls] ==> mapMonotonic f s == map f s where ls = toList s
mapMaybe :: Ord b => (a -> Maybe b) -> MultiSet a -> MultiSet bmultiset Data.MultiSet O(n). Map and collect the Just results.
mapMonotonic :: (a -> b) -> MultiSet a -> MultiSet bmultiset Data.MultiSet O(n). mapMonotonic f s == map f s, but works only when f is strictly monotonic. The precondition is not checked. Semi-formally, we have:
and [x < y ==> f x < f y | x <- ls, y <- ls] ==> mapMonotonic f s == map f s where ls = toList s
-
multistate Control.Monad.Trans.MultiGST No documentation available.
-
multistate Control.Monad.Trans.MultiGST.Lazy No documentation available.
-
multistate Control.Monad.Trans.MultiGST.Strict No documentation available.
-
multistate Control.Monad.Trans.MultiRWS No documentation available.
-
multistate Control.Monad.Trans.MultiRWS.Lazy No documentation available.