sclang: ServerShmInterface - try to avoid multiple destructor calls
[supercollider.git] / HelpSource / Classes / Delay1.schelp
blob3989ca194a459ed4d1b70f7584983376ffdac334
1 class:: Delay1
2 summary:: Single sample delay.
3 related:: Classes/Delay2
4 categories::  UGens>Delays
7 Description::
9 Delays the input by 1 audio frame or control period.
12 classmethods::
14 method::ar, kr
16 argument::in
17 Input signal.
19 argument::mul
20 Output will be multiplied by this value.
22 argument::add
23 This value will be added to the output.
25 discussion::
26 For audio-rate signals the delay is 1 audio frame, and for control-rate signals the delay is 1 control period.
29 Examples::
31 code::
34 plot({
35         var z;
36         z = Dust.ar(1000);
37         [z, z - Delay1.ar(z)]   // [ original, subtract delayed from original ]
38 }))