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 @@ A word (letters, digits and the underscore)Taken as a text stringNAME +

+ 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: +

+ + + + + + + + + + + + +
NotationDescriptionExample
#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" literalnil
trueBoolean true literaltrue
falseBoolean false literalfalse
[type:...]An object[box:(0,0,10,20)]
(...)A list(#1,'abc')
{...}A hash{#1=>'abc','one'=>#1}
+