ExprSequence

Construct a sequence of expressions.


Syntax

ExprSequence

graphics/ExprSequence.png

Expr

Description

An ExprSequence constructs a sequence of expressions that consists of at least one expression. Further expressions are separated by commas.

Example

  • A sequence of expressions that consists of string and numeric literals:

    (1, 2, ("a", "b", "c"), 3, 4)

    Since sequences cannot be nested, this sequence is evaluated to the sequence (1, 2, a, b, c, 3, 4).

Related Syntax Constructs

The following construct(s) refer to this construct:

This construct is also related to the following construct(s):

XQueryModule