hsc3-0.20: Haskell SuperCollider
Safe HaskellSafe-Inferred
LanguageHaskell2010

Sound.Sc3.Ugen.Brackets

Description

Brackets

Synopsis

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.

concatBrackets :: [Brackets] -> Brackets Source #

Combine a sequence of Brackets into one Bracket.

f = bimap concat concat . unzip
f [(['a'],['A']),(['b'],['B'])]