event-list-0.0.11.1: Event lists with relative or absolute time stamps

PortabilityHaskell 98
Stabilitystable
Maintainerhaskell@henning-thielemann.de

Data.EventList.Relative.MixedTime

Description

Event lists starting with a body and ending with a time difference.

Documentation

consBody :: body -> T time body -> T time bodySource

consTime :: time -> T time body -> T time bodySource

(/.) :: time -> T time body -> T time bodySource

(./) :: body -> T time body -> T time bodySource

empty :: T time bodySource

viewTimeL :: T time body -> (time, T time body)Source

viewBodyL :: T time body -> Maybe (body, T time body)Source

switchTimeL :: (time -> T time body -> a) -> T time body -> aSource

switchBodyL :: a -> (body -> T time body -> a) -> T time body -> aSource

mapTimeL :: (time -> time, T time body0 -> T time body1) -> T time body0 -> T time body1Source

mapTimeHead :: (time -> time) -> T time body -> T time bodySource

mapTimeTail :: (T time body0 -> T time body1) -> T time body0 -> T time body1Source

mapBodyL :: (body -> body, T time0 body -> T time1 body) -> T time0 body -> T time1 bodySource

mapBodyHead :: (body -> body) -> T time body -> T time bodySource

mapBodyTail :: (T time0 body -> T time1 body) -> T time0 body -> T time1 bodySource