Forgot a help fix: Drag a dock's title bar, not divider, to reposition
[supercollider.git] / HelpSource / Classes / UnaryOpStream.schelp
blob2f4d28e1255fb14fba6a1f25a4e5fc340bce849a
1 class:: UnaryOpStream
2 summary:: stream modified by a unary operator
3 related:: Classes/BinaryOpStream, Classes/NAryOpStream
4 categories:: Streams-Patterns-Events
6 description::
8 A UnaryOpStream is created as a result of a unary math operation on a Stream. It is defined to respond to strong::next:: by returning the result of the math operation on the strong::next:: value from the stream. It responds to strong::reset:: by resetting the Stream.
10 Examples::
12 code::
13 x = Routine { 6.do { arg i; i.yield; } }.squared;
14 x.dump;
17 code::
19 x = Routine { 6.do { arg i; i.yield; } }.squared;
20 x.next.postln;
21 x.next.postln;
22 x.next.postln;
23 x.next.postln;
24 x.next.postln;
25 x.next.postln;
26 x.next.postln;