Portability | Haskell 98 |
---|---|
Stability | stable |
Maintainer | haskell@henning-thielemann.de |
Safe Haskell | Safe-Inferred |
Event lists starting with a body and ending with a time difference.
Documentation
fromPairList :: [(body, time)] -> T time bodySource
toPairList :: T time body -> [(body, time)]Source
concatMapMonoid :: Monoid m => (time -> m) -> (body -> m) -> T time body -> mSource
traverse :: Applicative m => (time0 -> m time1) -> (body0 -> m body1) -> T time0 body0 -> m (T time1 body1)Source
traverse_ :: Applicative m => (time -> m ()) -> (body -> m ()) -> T time body -> m ()Source
traverseBody :: Applicative m => (body0 -> m body1) -> T time body0 -> m (T time body1)Source
traverseTime :: Applicative m => (time0 -> m time1) -> T time0 body -> m (T time1 body)Source