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

Copyright(c) Henning Thielemann 2007
Maintainerhaskell@henning-thielemann.de
Stabilitystable
PortabilityHaskell 98
Safe HaskellSafe
LanguageHaskell98

Data.EventList.Relative.MixedBody

Description

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

Documentation

consBody :: body -> T time body -> T time body Source

consTime :: time -> T time body -> T time body Source

(/.) :: time -> T time body -> T time body infixr 5 Source

(./) :: body -> T time body -> T time body infixr 5 Source

empty :: T time body Source

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

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

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

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

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

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

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