Files
processing4/web/reference/API/decrement.xml
2005-01-27 06:48:42 +00:00

55 lines
903 B
XML

<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<root>
<name>-- (decrement)</name>
<category>Math</category>
<subcategory>Operators</subcategory>
<usage>Web &amp; Application</usage>
<example>
<image></image>
<code>
int a = 5; // Sets "a" to 5
int b = a--; // Sets "b" to 5, then decrements "a" to 4
int c = a; // Sets "c" to 4
</code>
</example>
<description>
Substracts the value of an integer variable by 1. Equivalent to the operation <b>i = i - 1</b>. If the value of the variable <b>i</b> is five, then the expression <b>i--</b> decreases the value of <b>i</b> to 4.
</description>
<syntax>
<c>var</c>--
</syntax>
<parameter>
<label>var</label>
<description>int</description>
</parameter>
<returns></returns>
<related>
- (minus)
-= (subtract assign)
++ (increment)
</related>
<availability>1.0</availability>
<type>Operator</type>
<partof>PDE</partof>
</root>