mirror of
https://github.com/ethereum/solidity
synced 2023-10-03 13:03:40 +00:00
Remove >>> and >>>= operators
This commit is contained in:
parent
71438157ce
commit
8bf96b1c43
@ -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 | ``,`` |
|
||||
+------------+-------------------------------------+--------------------------------------------+
|
||||
|
Loading…
Reference in New Issue
Block a user