diff --git a/src/doc/doc/about/variant_notation.xml b/src/doc/doc/about/variant_notation.xml index 2f985bd0b..3f60a9c92 100644 --- a/src/doc/doc/about/variant_notation.xml +++ b/src/doc/doc/about/variant_notation.xml @@ -30,5 +30,23 @@
+ There are further notations for more integer types, complex types and literals. + Those are not useful in every case. For example, user properties may not support these types: +
+ +| Notation | Description | Example |
|---|---|---|
| #l... | A "long" integer value (32 or 64 bit, depending on the platform) | #l17 |
| #u... | An unsigned integer value | #u17 |
| #lu... | A "long" unsigned integer value | #lu17 |
| nil | "nothing" literal | nil |
| true | Boolean true literal | true |
| false | Boolean false literal | false |
| [type:...] | An object | [box:(0,0,10,20)] |
| (...) | A list | (#1,'abc') |
| {...} | A hash | {#1=>'abc','one'=>#1} |