diff options
author | Denton Liu <liu.denton+github@gmail.com> | 2016-07-29 03:25:58 +0800 |
---|---|---|
committer | Denton Liu <liu.denton+github@gmail.com> | 2016-07-29 03:25:58 +0800 |
commit | 5687beb424663871d3d59c6bd12d71fff79d5200 (patch) | |
tree | 4b53d0378772eca40a5eef58200f714774a9ee6b /docs/miscellaneous.rst | |
parent | 7a203241420fa266cff5640acdc9015f04804901 (diff) | |
download | dexon-solidity-5687beb424663871d3d59c6bd12d71fff79d5200.tar dexon-solidity-5687beb424663871d3d59c6bd12d71fff79d5200.tar.gz dexon-solidity-5687beb424663871d3d59c6bd12d71fff79d5200.tar.bz2 dexon-solidity-5687beb424663871d3d59c6bd12d71fff79d5200.tar.lz dexon-solidity-5687beb424663871d3d59c6bd12d71fff79d5200.tar.xz dexon-solidity-5687beb424663871d3d59c6bd12d71fff79d5200.tar.zst dexon-solidity-5687beb424663871d3d59c6bd12d71fff79d5200.zip |
Add unary operations to the table
Diffstat (limited to 'docs/miscellaneous.rst')
-rw-r--r-- | docs/miscellaneous.rst | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/docs/miscellaneous.rst b/docs/miscellaneous.rst index e56b1d24..26901946 100644 --- a/docs/miscellaneous.rst +++ b/docs/miscellaneous.rst @@ -175,6 +175,8 @@ The following is the order of precedence for operators, listed in order of evalu + +-------------------------------------+--------------------------------------------+ | | Unary plus and minus | ``+``, ``-`` | + +-------------------------------------+--------------------------------------------+ +| | Unary operations | ``after``, ``delete`` | ++ +-------------------------------------+--------------------------------------------+ | | Logical NOT | ``!`` | + +-------------------------------------+--------------------------------------------+ | | Bitwise NOT | ``~`` | |