-
-
Notifications
You must be signed in to change notification settings - Fork 173
Expand file tree
/
Copy pathcomma.xml
More file actions
executable file
·56 lines (34 loc) · 979 Bytes
/
Copy pathcomma.xml
File metadata and controls
executable file
·56 lines (34 loc) · 979 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<root>
<name>, (comma)</name>
<category>Structure</category>
<subcategory></subcategory>
<usage>Web & Application</usage>
<example>
<image></image>
<code><![CDATA[
// Comma used to separate a list of variable declarations
int a=20, b=30, c=80;
// Comma used to separate a list of values assigned to an array
int[] d = { 20, 60, 80 };
// Comma used to separate a list of parameters passed to a function
line(a, b, c, b);
line(d[0], d[1], d[2], d[1]);
]]></code>
</example>
<description><![CDATA[
Separates parameters in function calls and elements during assignment.
]]></description>
<syntax>
value1, ..., valueN
</syntax>
<parameter>
<label>value1, ..., valueN</label>
<description><![CDATA[any int, float, byte, boolean, color, char, String]]></description>
</parameter>
<returns></returns>
<related></related>
<availability>1.0</availability>
<type>Operator</type>
<partof>PDE</partof>
</root>