diff options
author | Denton Liu <liu.denton+github@gmail.com> | 2016-07-27 22:30:20 +0800 |
---|---|---|
committer | Denton Liu <liu.denton+github@gmail.com> | 2016-07-27 22:30:20 +0800 |
commit | 8bf96b1c43febe3c082a9d60af6ebdc44d4eca68 (patch) | |
tree | 06564924be93288b5aee0d58aabcffa70ad1c006 /docs/miscellaneous.rst | |
parent | 71438157ce8455cbc14939b95e1a28236f10ed46 (diff) | |
download | dexon-solidity-8bf96b1c43febe3c082a9d60af6ebdc44d4eca68.tar.gz dexon-solidity-8bf96b1c43febe3c082a9d60af6ebdc44d4eca68.tar.zst dexon-solidity-8bf96b1c43febe3c082a9d60af6ebdc44d4eca68.zip |
Remove >>> and >>>= operators
Diffstat (limited to 'docs/miscellaneous.rst')
-rw-r--r-- | docs/miscellaneous.rst | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/docs/miscellaneous.rst b/docs/miscellaneous.rst index 61dc9a16..e56b1d24 100644 --- a/docs/miscellaneous.rst +++ b/docs/miscellaneous.rst @@ -185,7 +185,7 @@ The following is the order of precedence for operators, listed in order of evalu +------------+-------------------------------------+--------------------------------------------+ | *5* | Addition and subtraction | ``+``, ``-`` | +------------+-------------------------------------+--------------------------------------------+ -| *6* | Bitwise shift operators | ``<<``, ``>>``, ``>>>`` | +| *6* | Bitwise shift operators | ``<<``, ``>>`` | +------------+-------------------------------------+--------------------------------------------+ | *7* | Bitwise AND | ``&`` | +------------+-------------------------------------+--------------------------------------------+ @@ -204,8 +204,8 @@ The following is the order of precedence for operators, listed in order of evalu | *14* | Ternary operator | ``<conditional> ? <if-true> : <if-false>`` | +------------+-------------------------------------+--------------------------------------------+ | *15* | Assignment operators | ``=``, ``|=``, ``^=``, ``&=``, ``<<=``, | -| | | ``>>=``, ``>>>=``, ``+=``, ``-=``, ``*=``, | -| | | ``/=``, ``%=`` | +| | | ``>>=``, ``+=``, ``-=``, ``*=``, ``/=``, | +| | | ``%=`` | +------------+-------------------------------------+--------------------------------------------+ | *16* | Comma operator | ``,`` | +------------+-------------------------------------+--------------------------------------------+ |