diff options
Diffstat (limited to 'source/lang/bitshift.rst')
-rw-r--r-- | source/lang/bitshift.rst | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/source/lang/bitshift.rst b/source/lang/bitshift.rst index f05d49e..e1c8de0 100644 --- a/source/lang/bitshift.rst +++ b/source/lang/bitshift.rst @@ -2,17 +2,13 @@ .. _lang-bitshift: -Bit shift left (``<<``), bit shift right (``>>``) -================================================= - -Description ------------ +Bit Shift Operators (``<<``, ``>>``) +==================================== (Adapted from `The Bit Math Tutorial <http://www.arduino.cc/playground/Code/BitMath>`_ in `The Arduino Playground <http://www.arduino.cc/playground/Main/HomePage>`_\ ) - There are two bit shift operators in C++: the left shift operator ``<<`` and the right shift operator ``>>``. These operators cause the bits in the left operand to be shifted left or right by the number of |