Packages

final case class Input(arg: String, tpe: Type) extends Product with Serializable

A UGen (server-side) input corresponds with a particular argument in the client-side interface.

arg

the name of the argument (in the spec's args sequence) corresponding to the UGen input.

tpe

if variadic, the signal is treated as a multi-channel input with variable number of channels. only the last input of a UGen can be variadic. An example is the second input of the Out UGen.

Linear Supertypes
Serializable, Product, Equals, AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. Input
  2. Serializable
  3. Product
  4. Equals
  5. AnyRef
  6. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

Instance Constructors

  1. new Input(arg: String, tpe: Type)

    arg

    the name of the argument (in the spec's args sequence) corresponding to the UGen input.

    tpe

    if variadic, the signal is treated as a multi-channel input with variable number of channels. only the last input of a UGen can be variadic. An example is the second input of the Out UGen.

Value Members

  1. val arg: String
  2. def productElementNames: Iterator[String]
    Definition Classes
    Product
  3. def toString(): String
    Definition Classes
    Input → AnyRef → Any
  4. val tpe: Type
  5. def variadic: Boolean