aboutsummaryrefslogtreecommitdiffstats
path: root/docs/source/arduino/increment.rst
diff options
context:
space:
mode:
authorPerry Hung <iperry@gmail.com>2011-01-24 23:23:29 -0500
committerPerry Hung <iperry@gmail.com>2011-01-24 23:23:29 -0500
commitc48689d34809943a5907884bd287cea9ae275352 (patch)
treed49ff06b0d4b81f6ab0eac8060d178ce7542476c /docs/source/arduino/increment.rst
parent64431fd4b59cb8656365f1fad5f679cd4d756239 (diff)
parenta9b2d70bc7799ca96c1673b18fe3012b1a4dd329 (diff)
downloadlibrambutan-c48689d34809943a5907884bd287cea9ae275352.tar.gz
librambutan-c48689d34809943a5907884bd287cea9ae275352.zip
Merge remote branch 'leaf/master'
Diffstat (limited to 'docs/source/arduino/increment.rst')
-rw-r--r--docs/source/arduino/increment.rst58
1 files changed, 0 insertions, 58 deletions
diff --git a/docs/source/arduino/increment.rst b/docs/source/arduino/increment.rst
deleted file mode 100644
index f9e87c9..0000000
--- a/docs/source/arduino/increment.rst
+++ /dev/null
@@ -1,58 +0,0 @@
-.. _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>`_
-
-