Expressions for Sequences
- Constructing sequences
- comma operator
- e.g. (p, list, table)
- short for (child::p, child::list, child::table)
- All p children followed by all list children followed by all table children
- numeric ranges (to operator)
- (1 to 10) is (1,2,3,4,5,6,7,8,9,10)
- Consecutive integers in ascending order
- Sequences can take predicates
- (p, list, table)[descendant::note]
- For expressions iterate over sequences
- Quantified expressions (some and
every)