From d23f40124483fb8118877c310d7cd2378872ba07 Mon Sep 17 00:00:00 2001 From: Matthias Koefferlein Date: Mon, 10 Aug 2026 00:24:57 +0200 Subject: [PATCH] Updating doc. --- src/doc/doc/about/variant_notation.xml | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) 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}
+