diff options
author | Boris Kolpackov <boris@codesynthesis.com> | 2020-07-13 13:24:07 +0200 |
---|---|---|
committer | Boris Kolpackov <boris@codesynthesis.com> | 2020-07-13 13:41:40 +0200 |
commit | 0ce923f1b9b008cf44602255f935bf3d9c4ba90d (patch) | |
tree | a087f20a78f134ad2efde7f38f5d720b9e1155a2 /doc | |
parent | 4b15244f65eb246d4e5d98ebfc1aa3137dc7275e (diff) |
Reserve backtick (`) and bit-or (|) in eval context for future use
Specifically, they are reserved for future support of arithmetic evaluation
contexts and evaluation pipelines, respectively.
Diffstat (limited to 'doc')
-rw-r--r-- | doc/manual.cli | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/doc/manual.cli b/doc/manual.cli index f6039d6..cb6c1ec 100644 --- a/doc/manual.cli +++ b/doc/manual.cli @@ -3465,7 +3465,11 @@ Note that \c{?:} (ternary operator) and \c{!} (logical not) are right-associative. Unlike C++, all the comparison operators have the same precedence. A qualified name cannot be combined with any other operator (including ternary) unless enclosed in parentheses. The \c{eval} option in the -\c{eval-value} production shall contain a single value only (no commas).| +\c{eval-value} production shall contain a single value only (no commas). + +Additionally, the \c{`} (backtick) and \c{|} (bitwise or) tokens are reserved +for future support of arithmetic evaluation contexts and evaluation pipelines, +respectively.| A function call starts with \c{$} followed by its name and an eval context listing its arguments. Note that there is no space between the name and |