We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent db9f6bf commit a56e1e0Copy full SHA for a56e1e0
binop.go
@@ -20,6 +20,7 @@ func BinOpAdd(rate int8, x, y Input, numOutputs int) *UgenNode {
20
21
// MulAdd creates a MulAdd ugen.
22
func MulAdd(rate int8, in, mul, add Input, numOutputs int) *UgenNode {
23
+ CheckRate(rate)
24
return NewUgenNode("MulAdd", rate, 0, numOutputs, in, mul, add)
25
}
26
0 commit comments