diff options
author | Denton Liu <liu.denton+github@gmail.com> | 2016-07-21 03:35:38 +0800 |
---|---|---|
committer | Denton Liu <liu.denton+github@gmail.com> | 2016-07-21 03:48:55 +0800 |
commit | 5d09211d50c4284d936ef725b7d4dd693aef620a (patch) | |
tree | 18207222d945ad2c73c215ca089c96fbbda9552b /docs | |
parent | dfe55a929d78657544e744f12c13d73983671b7f (diff) | |
download | dexon-solidity-5d09211d50c4284d936ef725b7d4dd693aef620a.tar dexon-solidity-5d09211d50c4284d936ef725b7d4dd693aef620a.tar.gz dexon-solidity-5d09211d50c4284d936ef725b7d4dd693aef620a.tar.bz2 dexon-solidity-5d09211d50c4284d936ef725b7d4dd693aef620a.tar.lz dexon-solidity-5d09211d50c4284d936ef725b7d4dd693aef620a.tar.xz dexon-solidity-5d09211d50c4284d936ef725b7d4dd693aef620a.tar.zst dexon-solidity-5d09211d50c4284d936ef725b7d4dd693aef620a.zip |
Add link to operator table
Diffstat (limited to 'docs')
-rw-r--r-- | docs/miscellaneous.rst | 2 | ||||
-rw-r--r-- | docs/types.rst | 3 |
2 files changed, 5 insertions, 0 deletions
diff --git a/docs/miscellaneous.rst b/docs/miscellaneous.rst index 55582eed..83bbb828 100644 --- a/docs/miscellaneous.rst +++ b/docs/miscellaneous.rst @@ -151,6 +151,8 @@ Cheatsheet .. index:: precedence +.. _order: + Order of Precedence of Operators ================================ diff --git a/docs/types.rst b/docs/types.rst index 50e86ed0..d7681ee5 100644 --- a/docs/types.rst +++ b/docs/types.rst @@ -12,6 +12,9 @@ see :ref:`type-deduction` below) at compile-time. Solidity provides several elementary types which can be combined to form complex types. +In addition, types can interact with each other in expressions containing +operators. For a quick reference of the various operators, see :ref:`order`. + .. index:: ! value type, ! type;value Value Types |