aboutsummaryrefslogtreecommitdiffstats
path: root/source/arduino/increment.rst
diff options
context:
space:
mode:
Diffstat (limited to 'source/arduino/increment.rst')
-rw-r--r--source/arduino/increment.rst58
1 files changed, 58 insertions, 0 deletions
diff --git a/source/arduino/increment.rst b/source/arduino/increment.rst
new file mode 100644
index 0000000..f9e87c9
--- /dev/null
+++ b/source/arduino/increment.rst
@@ -0,0 +1,58 @@
+.. _arduino-increment:
+
+++ (increment) / -- (decrement)
+===============================
+
+Description
+-----------
+
+Increment or decrement a variable
+
+
+
+Syntax
+------
+
+::
+
+ x++; // increment x by one and returns the old value of x
+ ++x; // increment x by one and returns the new value of x
+
+ x-- ; // decrement x by one and returns the old value of x
+ --x ; // decrement x by one and returns the new value of x
+
+
+
+Parameters
+----------
+
+x: an integer or long (possibly unsigned)
+
+
+
+Returns
+-------
+
+The original or newly incremented / decremented value of the
+variable.
+
+
+
+Examples
+--------
+
+::
+
+ x = 2;
+ y = ++x; // x now contains 3, y contains 3
+ y = x--; // x contains 2 again, y still contains 3
+
+
+
+See also
+--------
+
+`+= <http://arduino.cc/en/Reference/Arithmetic>`_
+`-= <http://arduino.cc/en/Reference/Arithmetic>`_
+
+