Parentheses enclose sequences.
In literal sequence, the item literals are seprated by a commas:
(1, 3, 2, 34, 76, -87)
The to operator
generates a range sequence without explicit listing:
(1 to 12)
Using constructors:
(fn:date("2002-03-11"), fn:date("2002-03-12"), fn:date("2002-03-13"),
fn:date("2002-03-14"), fn:date("2002-03-15"))
Sequences can have mixed types: (fn:date("2002-03-11"), "Hello", 15)
Sequences do not nest; that is, a sequence cannot be a member of a sequence
Sequences are not sets: they are ordered and can contain duplicates
A single item is the same as a one-element sequence containing the item