Hoogle Search
Within LTS Haskell 24.6 (ghc-9.10.2)
Note that Stackage only displays results for the latest LTS and Nightly snapshot. Learn more.
-
automaton Data.Automaton Only step the automaton if the input is Just.
mapMaybeT :: (m (Maybe a) -> n (Maybe b)) -> MaybeT m a -> MaybeT n bautomaton Data.Automaton.Trans.Maybe Transform the computation inside a MaybeT.
-
cursor Cursor.Map No documentation available.
mapMapCursor :: (k -> l) -> (v -> w) -> MapCursor k v -> MapCursor l wcursor Cursor.Simple.Map No documentation available.
mapM_ :: (Vector v a, Applicative f) => (a -> f b) -> v a -> f ()fixed-vector Data.Vector.Fixed Apply monadic action to each element of vector and ignore result.
-
fixed-vector Data.Vector.Fixed.Cont Apply monadic action to each element of vector and ignore result.
mapMG :: (Vector v a, Vector w b, Dim w ~ Dim v, Monad m) => (a -> m b) -> v a -> m (w b)fixed-vector Data.Vector.Fixed.Generic Monadic map over vector.
mapMonotonic :: Ord b => (a -> b) -> Heap a -> Heap bheaps Data.Heap O(n). Map a monotone increasing function over the heap. Provides a better constant factor for performance than map, but no checking is performed that the function provided is monotone increasing. Misuse of this function can cause a Heap to violate the heap property.
>>> mapMonotonic (+1) (fromList [1,2,3]) fromList [2,3,4] >>> mapMonotonic (*2) (fromList [1,2,3]) fromList [2,4,6]
-
hetero-parameter-list Data.HeteroParList No documentation available.
mapM_ :: (Foldable t, Monad m) => (a -> m b) -> t a -> m ()mixed-types-num Numeric.MixedTypes.PreludeHiding 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.