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.
mapBodyM :: Monad m => (body0 -> m body1) -> T time body0 -> m (T time body1)event-list Data.EventList.Relative.TimeTime No documentation available.
mapCoincident :: C time => ([a] -> [b]) -> T time a -> T time bevent-list Data.EventList.Relative.TimeTime No documentation available.
mapM :: Monad m => (time0 -> m time1) -> (body0 -> m body1) -> T time0 body0 -> m (T time1 body1)event-list Data.EventList.Relative.TimeTime No documentation available.
mapM_ :: Monad m => (time -> m ()) -> (body -> m ()) -> T time body -> m ()event-list Data.EventList.Relative.TimeTime No documentation available.
mapMaybe :: C time => (body0 -> Maybe body1) -> T time body0 -> T time body1event-list Data.EventList.Relative.TimeTime No documentation available.
mapTime :: (time0 -> time1) -> T time0 body -> T time1 bodyevent-list Data.EventList.Relative.TimeTime No documentation available.
mapTimeM :: Monad m => (time0 -> m time1) -> T time0 body -> m (T time1 body)event-list Data.EventList.Relative.TimeTime No documentation available.
mapCol :: (Int -> a -> a) -> Int -> Matrix a -> Matrix amatrix Data.Matrix O(rows*cols). Map a function over a column. Example:
( 1 2 3 ) ( 1 3 3 ) ( 4 5 6 ) ( 4 6 6 ) mapCol (\_ x -> x + 1) 2 ( 7 8 9 ) = ( 7 9 9 )
mapPos :: ((Int, Int) -> a -> b) -> Matrix a -> Matrix bmatrix Data.Matrix O(rows*cols). Map a function over elements. Example:
( 1 2 3 ) ( 0 -1 -2 ) ( 4 5 6 ) ( 1 0 -1 ) mapPos (\(r,c) a -> r - c) ( 7 8 9 ) = ( 2 1 0 )
mapRow :: (Int -> a -> a) -> Int -> Matrix a -> Matrix amatrix Data.Matrix O(rows*cols). Map a function over a row. Example:
( 1 2 3 ) ( 1 2 3 ) ( 4 5 6 ) ( 5 6 7 ) mapRow (\_ x -> x + 1) 2 ( 7 8 9 ) = ( 7 8 9 )