FilterSeq

final case class FilterSeq[A](in: GE[A], gate: B) extends SingleOut[A]

A UGen that filters its input, retaining only those elements in the output sequence for which the predicate gate holds.

You can think of it as Gate but instead of outputting zeroes when the gate is closed, no values are output at all. Consequently, the length of the output stream will differ from the length of the input stream.

See also:
Companion:
object
trait Serializable
trait SingleOut[A]
trait Lazy[A]
trait GE[A]
trait Lazy
trait Product
trait Equals
class Object
trait Matchable
class Any

Value members

Inherited methods

final def name: String
Inherited from:
UGenSource
def productElementNames: Iterator[String]
Inherited from:
Product
def productIterator: Iterator[Any]
Inherited from:
Product