2 summary:: Reject values from a pattern
3 categories:: Streams-Patterns-Events>Patterns>Filter
4 related:: Classes/Pselect, Classes/Pcollect
7 Rejects values for which the function returns true. The value is passed to the function.
14 A link::Classes/Function::. Receives values from code::pattern::.
16 A link::Classes/Pattern::.
23 a = Preject({ arg item; item == 1 }, Pseq(#[1, 2, 3],inf));
25 9.do({ x.next.postln; });
29 The message reject returns a Preject when passed to a pattern
33 a = Pseq(#[1, 2, 3],inf).reject({ arg item; item == 1 });
36 9.do({ x.next.postln; });