Safe Haskell | Safe-Inferred |
---|---|
Language | Haskell2010 |
Brackets
Synopsis
- type Brackets = ([Message], [Message])
- emptyBrackets :: Brackets
- concatBrackets :: [Brackets] -> Brackets
Documentation
type Brackets = ([Message], [Message]) Source #
Brackets are two sets of Open Sound Control messages that can be associated with a Ugen. The first is to be run prior to the graph being executed, the other after it has ended.
emptyBrackets :: Brackets Source #
No messages.
concatBrackets :: [Brackets] -> Brackets Source #
Combine a sequence of Brackets into one Bracket.
f = bimap concat concat . unzip f [(['a'],['A']),(['b'],['B'])]