[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[sc-users] ? and ??



what does ? do?
what does ?? do?

(4 ? 5).postln;
4

(4 ?? 5).postln;
4


x = FSinOsc;
y = FSinOsc;
z = LFSaw;

(x ? y).postln;
FSinOsc

(x ?? y).postln;
FSinOsc

(x ? z).postln;
FSinOsc

(x ?? z).postln;
FSinOsc


this is testing for what?