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.
-
dependent-monoidal-map Data.Dependent.Map.Monoidal O(n). Map keys/values and separate the Left and Right results.
-
dependent-monoidal-map Data.Dependent.Map.Monoidal O(n*log n). mapKeysWith c f s is the map obtained by applying f to each key of s. The size of the result may be smaller if f maps two or more distinct keys to the same new key. In this case the associated values will be combined using c.
-
dependent-monoidal-map Data.Dependent.Map.Monoidal O(n). Map keys/values and collect the Just results.
-
dependent-monoidal-map Data.Dependent.Map.Monoidal O(n). Map a function over all values in the map.
mapVertices :: (Eq b, Hashable b) => (a -> b) -> DiGraph a -> DiGraph bdigraph Data.DiGraph Map a function over all vertices of a graph.
mapM :: (Traversable t, Monad m) => (a -> m b) -> t a -> m (t b)dimensional Numeric.Units.Dimensional.Prelude Map each element of a structure to a monadic action, evaluate these actions from left to right, and collect the results. For a version that ignores the results see mapM_.
Examples
mapM is literally a traverse with a type signature restricted to Monad. Its implementation may be more efficient due to additional power of Monad.mapM_ :: (Foldable t, Monad m) => (a -> m b) -> t a -> m ()dimensional Numeric.Units.Dimensional.Prelude Map each element of a structure to a monadic action, evaluate these actions from left to right, and ignore the results. For a version that doesn't ignore the results see mapM. mapM_ is just like traverse_, but specialised to monadic actions.
mappend :: Monoid a => a -> a -> adimensional Numeric.Units.Dimensional.Prelude An associative operation NOTE: This method is redundant and has the default implementation mappend = (<>) since base-4.11.0.0. Should it be implemented manually, since mappend is a synonym for (<>), it is expected that the two functions are defined the same way. In a future GHC release mappend will be removed from Monoid.
mapAndUnzipM :: Applicative m => (a -> m (b, c)) -> [a] -> m ([b], [c])distribution-opensuse OpenSuse.Prelude The mapAndUnzipM function maps its first argument over a list, returning the result as a pair of lists. This function is mainly used with complicated data structures or a state monad.
mapM :: (Traversable t, Monad m) => (a -> m b) -> t a -> m (t b)distribution-opensuse OpenSuse.Prelude Map each element of a structure to a monadic action, evaluate these actions from left to right, and collect the results. For a version that ignores the results see mapM_.
Examples
mapM is literally a traverse with a type signature restricted to Monad. Its implementation may be more efficient due to additional power of Monad.