Packages

object Gate extends ProductReader[Gate] with Serializable

A gate or hold UGen. It allows the input signal value to pass when the gate argument is positive, otherwise it holds last value.

Before the first high gate value is registered, this UGen outputs zero.

See also

Latch

Linear Supertypes
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. Gate
  2. Serializable
  3. ProductReader
  4. AnyRef
  5. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

Value Members

  1. def ar(in: GE, gate: GE): Gate

    in

    the input signal to gate

    gate

    the signal specifying whether to pass the input signal (when greater than zero) or whether to close the gate and hold the last value (when less than or equal to zero)

  2. def kr(in: GE, gate: GE): Gate

    in

    the input signal to gate

    gate

    the signal specifying whether to pass the input signal (when greater than zero) or whether to close the gate and hold the last value (when less than or equal to zero)

  3. def read(in: RefMapIn, key: String, arity: Int): Gate
    Definition Classes
    GateProductReader