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.

  1. mapBodyM :: Monad m => (body0 -> m body1) -> T time body0 -> m (T time body1)

    event-list Data.EventList.Relative.TimeTime

    No documentation available.

  2. mapCoincident :: C time => ([a] -> [b]) -> T time a -> T time b

    event-list Data.EventList.Relative.TimeTime

    No documentation available.

  3. 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.

  4. mapM_ :: Monad m => (time -> m ()) -> (body -> m ()) -> T time body -> m ()

    event-list Data.EventList.Relative.TimeTime

    No documentation available.

  5. mapMaybe :: C time => (body0 -> Maybe body1) -> T time body0 -> T time body1

    event-list Data.EventList.Relative.TimeTime

    No documentation available.

  6. mapTime :: (time0 -> time1) -> T time0 body -> T time1 body

    event-list Data.EventList.Relative.TimeTime

    No documentation available.

  7. mapTimeM :: Monad m => (time0 -> m time1) -> T time0 body -> m (T time1 body)

    event-list Data.EventList.Relative.TimeTime

    No documentation available.

  8. mapCol :: (Int -> a -> a) -> Int -> Matrix a -> Matrix a

    matrix 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 )
    

  9. mapPos :: ((Int, Int) -> a -> b) -> Matrix a -> Matrix b

    matrix 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 )
    

  10. mapRow :: (Int -> a -> a) -> Int -> Matrix a -> Matrix a

    matrix 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 )
    

Page 148 of many | Previous | Next