Product SiteDocumentation Site

8.6. Empty Sequence Behavior

In range operations, arithmetics and comparisons, if an operand is the empty sequence, then the result is the empty sequence as well.
Example 8.11. The empty sequence used in basic operations.
() to 10,
1 to (),
1 + (),
() eq 1,
() ge 10
Results: