Packages

object Lazy

Linear Supertypes
AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. Lazy
  2. AnyRef
  3. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

Type Members

  1. trait Expander[+U] extends Lazy

    A convenient implementation of the Lazy trait for elements which typically expand to ugens.

    A convenient implementation of the Lazy trait for elements which typically expand to ugens. This will be typically used for elements which do not directly need to generate ugens but rather spawn more graph elements. For the direct generation of UGens, use a subtype of UGenSource.

    The constructor body of this trait will call SynthGraph.builder.addLazy to automatically register this element when instantiated.

    U

    the type to which this element expands, e.g. Unit or UGenInLike

    See also

    de.sciss.synth.UGenSource