Portability | non-portable (TF,GNTD) |
---|---|
Stability | experimental |
Maintainer | hans@hanshoglund.se |
Safe Haskell | None |
Music.Time.Performable
Description
- class Foldable s => Performable s where
- foldMapDefault :: (Performable s, Monoid m) => (a -> m) -> s a -> m
Documentation
class Foldable s => Performable s whereSource
Performable values.
Minimal complete definition: perform
.
Methods
perform :: (t ~ Time s, d ~ Duration s) => s a -> [(t, d, a)]Source
Perform a score.
This is the inverse of compose
Perform a score, yielding an ordered list of values.
Equivalent to toList
, but may be more efficient.
Instances
foldMapDefault :: (Performable s, Monoid m) => (a -> m) -> s a -> mSource