Hoogle Search
Within LTS Haskell 24.33 (ghc-9.10.3)
Note that Stackage only displays results for the latest LTS and Nightly snapshot. Learn more.
mapM_ :: forall m a b (n :: Nat) . Monad m => (a -> m b) -> ListN n a -> m ()basement Basement.Sized.List Map each element of a List to a monadic action, evaluate these actions sequentially and ignore the results
mapi :: forall a b (n :: Nat) . (Natural -> a -> b) -> ListN n a -> ListN n bbasement Basement.Sized.List Map all elements in a list with an additional index
mapIndex :: (PrimType a, PrimType b) => (Offset b -> a -> b) -> UArray a -> UArray bbasement Basement.UArray No documentation available.
mapSeverity :: (Severity -> Severity) -> WithSeverity msg -> WithSeverity msgco-log-core Colog.Core.Severity Map the given function over the severity of a WithSeverity. This can be useful to operate generically over the severity, for example:
suppressErrors :: LogAction m (WithSeverity msg) -> LogAction m (WithSeverity msg) suppressErrors = cmap (mapSeverity (s -> if s == Error then Warning else s))
mapBody :: (body0 -> body1) -> T time body0 -> T time body1event-list Data.EventList.Absolute.TimeBody No documentation available.
mapBodyM :: Monad m => (body0 -> m body1) -> T time body0 -> m (T time body1)event-list Data.EventList.Absolute.TimeBody No documentation available.
mapCoincident :: Ord time => ([a] -> [b]) -> T time a -> T time bevent-list Data.EventList.Absolute.TimeBody Apply a function to the lists of coincident events.
mapM :: Monad m => (time0 -> m time1) -> (body0 -> m body1) -> T time0 body0 -> m (T time1 body1)event-list Data.EventList.Absolute.TimeBody No documentation available.
mapM_ :: Monad m => (time -> m ()) -> (body -> m ()) -> T time body -> m ()event-list Data.EventList.Absolute.TimeBody No documentation available.
mapMaybe :: Num time => (body0 -> Maybe body1) -> T time body0 -> T time body1event-list Data.EventList.Absolute.TimeBody No documentation available.