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.

  1. mapTimeR :: (T time body0 -> T time body1, time -> time) -> T time body0 -> T time body1

    event-list Data.EventList.Relative.TimeMixed

    No documentation available.

  2. mapBody :: (body0 -> body1) -> T time body0 -> T time body1

    event-list Data.EventList.Relative.TimeTime

    No documentation available.

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

    event-list Data.EventList.Relative.TimeTime

    No documentation available.

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

    event-list Data.EventList.Relative.TimeTime

    No documentation available.

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

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

    event-list Data.EventList.Relative.TimeTime

    No documentation available.

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

    event-list Data.EventList.Relative.TimeTime

    No documentation available.

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

    event-list Data.EventList.Relative.TimeTime

    No documentation available.

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

    event-list Data.EventList.Relative.TimeTime

    No documentation available.

  10. 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 )
    

Page 148 of many | Previous | Next