CheckBadValues should run on the first sample as well
[supercollider.git] / HelpSource / Reference / Functions.schelp
blob0b304eef89166352ce385c8ac499c8dd35c68d90
1 title:: Functions
2 summary:: lambda expressions
3 categories:: Language
4 related:: Classes/Function, Classes/AbstractFunction, Classes/FunctionDef
6 section:: Introduction
8 A link::Classes/Function:: is an expression which defines operations to be performed when it is sent the code::value:: message. In functional languages, a function would be known as a lambda expression.
9 Function definitions are enclosed in curly brackets code::{}::. Argument declarations, if any, follow the open bracket. Variable declarations follow argument declarations. An expression follows the declarations. 
10 code::
11 { arg a, b, c;  var d;   d = a * b; c + d }
14 Functions are not evaluated immediately when they occur in code, but are passed as values just like integers or strings.
16 A function may be evaluated by passing it the code::value:: message and a list of arguments.
18 When evaluated, the function returns the value of its expression.
19 code::
20 f = { arg a, b; a + b };
21 f.value(4, 5).postln;
22 f.value(10, 200).postln;
25 An empty function returns the value nil when evaluated.
26 code::
27 {}.value.postln;
30 A function can be thought as a machine able to perform a task on demand, e.g. a calculator. The calculator can receive input (args) and can output a value, the result of the performed operations. The function definition can then be thought as the building of the calculator: once built, the calculator does nothing until it is requested to work (by passing the value method to a function).
31 The following figure depicts an empty function, input without output, output without input, and the general case with input and output. 
33 image::functions.png#Functions::
35 section:: Arguments
37 An argument list immediately follows the open curly bracket of a function definition. An argument list either begins with the reserved word code::arg::, or is contained between two vertical bars. If a function takes no arguments, then the argument list may be omitted. 
39 Names of arguments in the list may be initialized to a default value using the following syntax forms. Arguments which are not explicitly initialized will be set to nil if no value is passed for them.
41 "arg" style, default value is a literal:
42 code::{ arg x = 1; .... } :: link::#[1]::
44 "arg" style, default value is an expression:
45 code::{ arg x = 10.rand; ... } :: link::#[2]::
47 "arg" style, default value is a literal but you want to treat it like an expression:
48 code::{ arg x = (2); ... } :: link::#[2]::
50 Pipe style, default value is a literal:
51 code::{ |x = 1| ... } :: link::#[1]::
53 Pipe style, default value is an expression:
54 code::{ |x = (10.rand)| ... } :: link::#[2]::
56 If the last argument in the list is preceeded by three dots (an ellipsis), then all the remaining arguments that were passed will be assigned to that variable as an link::Classes/Array::. Arguments must be separated by commas.
58 examples:
59 code::
60 { arg a, b, c=3; } // is equivalent to:
62 { |a, b, c=3| }
64 { arg x='stop', y, z=0; } // these args are initialised
66 { arg a, b, c ... d; } // any arguments after the first 3 will be assigned to d as an Array
69 If you want all the arguments put in an Array
70 code::
71 arg ... z;
74 In general arguments may be initialized to literals or expressions, but in the case of Function:play or SynthDef:play, they may only be initialized to literals.
75 code::
76 // this is okay:
78 { arg a = Array.geom(4, 100, 3); a * 4 }.value;
80 // this is not:
82 { arg freq = Array.geom(4, 100, 3); Mix(SinOsc.ar(freq, 0, 0.1)) }.play; // silence
84 // but this is:
85 { arg freq =  #[ 100, 300, 900, 2700 ]; Mix(SinOsc.ar(freq, 0, 0.1)) }.play; // silence
88 See link::Reference/Literals:: for more information.
90 anchor::[1]::
91 subsection:: [1] Literal argument defaults
93 Argument defaults that are literals are stored as part of the link::Classes/FunctionDef::. Arguments passed at runtime -- including nil -- always override the defaults:
95 code::f = { arg x = 1; x };
96 f.value(2);  // prints 2
98 f.value;   // prints 1
100 f.value(nil);  // prints nil
103 anchor::[2]::
104 subsection:: [2] Expression argument defaults
106 Since expressions are evaluated when the function is called, they cannot be stored in the link::Classes/FunctionDef::. They are executed only if the passed-in value is nil.
108 code::f = { arg x = 10.rand; x };
109 f.value(100);  // prints 100
111 f.value;   // prints a number 0-9
113 f.value(nil);   // prints a number 0-9!
116 This means you can use expression-style to define a default that cannot be overridden by nil.
118 code::f = { arg x = (3); x };
119 f.value(nil);   // prints 3
122 Note: Parentheses are required when initializing an argument to an expression, if the argument list is written inside || pipes.
124 code::(
125 var abc = 2;
126 { arg x = abc+1; x }   // OK
130 var abc = 2;
131 { |x = abc+1| x }
133 ERROR: Parse error
134    in file 'selected text'
135    line 1 char 10:
136   { |x = abc•+1| x } 
137 -----------------------------------
138 ERROR: Command line parse failed
141 var abc = 2;
142 { |x = (abc+1)| x }   // OK
146 var abc = 2;
147 { |x (abc+1)| x }   // In ||, the = may be omitted if () are there
151 This is because the pipe character also serves as a binary operator. Without parentheses, expressions such as the following are ambiguous:
153 code::
154 { |a, b, c = a | b | c }
157 The following produce identical function definitions. Expression-style defaults are simply a shortcut syntax for the latter.
159 code::{ arg x = 10.rand; x };
161 {       arg x;
162         x ?? { x = 10.rand };
163         x
167 section:: Variables
169 Following the argument declarations are the variable declarations. These may be declared in any order. Variable lists are preceeded by the reserved word code::var::. There can be multiple var declaration lists if necessary. Variables may be initialized to default values in the same way as arguments. Variable declarations lists may not contain an ellipsis.
171 code::
172 var level=0, slope=1, curve=1;