forked from processing/processing-web-archive
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcharconvert.xml
More file actions
executable file
·57 lines (36 loc) · 845 Bytes
/
Copy pathcharconvert.xml
File metadata and controls
executable file
·57 lines (36 loc) · 845 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
57
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<root>
<name>char()</name>
<category>Data</category>
<subcategory>Conversion</subcategory>
<usage>Web & Application</usage>
<example>
<image></image>
<code><![CDATA[
int i = 65;
char c = char(i);
println(i + " : " + c); // Prints "65 : A"
byte b = 65;
c = char(b);
println(b + " : " + c); // Prints "65 : A"
]]></code>
</example>
<description><![CDATA[Converts a primitive datatype or array to a numeric character representation.]]></description>
<syntax><![CDATA[
char(<kbd>val</kbd>)
]]></syntax>
<parameter>
<label>val</label>
<description><![CDATA[int, byte, int[], byte[]]]></description>
</parameter>
<returns>char</returns>
<related>
char
int()
float()
byte()
</related>
<availability>1.0</availability>
<type>Function</type>
<partof>IDE</partof>
</root>