BinaryOpUGens are created as the result of a binary operator applied to a UGen.
The use of the binary operators *
and thresh
above each instantiate a BinaryOpUGen. The operators themselves (which are methods) are not to be confused with the resulting BinaryOpUGen (which is an object). The unary and binary operators are defined in UGen's superclass AbstractFunction, which creates the BinaryOpUGen as a result of the operation.
When operating on UGens instead of numbers, what results is not a result of the calculation, but a structure that represents that calculation. For the immediate operations on numbers, see for example SimpleNumber.
See Operators for an overview of common operators.
return a new instance that applies the operator selector
to the UGens a
and b
normally, this is implicitly called when applying an operator to a UGen.
selector |
The selector symbol for the binary operator |
a |
left operand |
b |
right operand |
A new instance of BinaryOpUGen
The operators >, >=, <, <=
are particularly useful for triggering. They should not be confused with their use in conditionals. Compare:
with
See Operators or the implementation of these in AbstractFunction for more detail.
Since the equality operator ( ==
) is used to distinguish objects including UGens, it cannot be used to create a BinaryOpUGen by application. Instead, to get a trigger value each time two signals are the same (instead of just finding out whether two UGens are the same), one can instantiate a BinaryOpUGen directly: