Class TXQVList
Unit
xquery
Declaration
type TXQVList = class(TXQVCustomList)
Description
List of TXQValue-s
. If a sequence is inserted/added, it is flattened, so only the contained items are added
Hierarchy
Overview
Methods
Description
Methods
|
procedure insert(i: integer; value: IXQValue); |
Adds a IXQValue to the sequence. (Remember that XPath sequences are not allowed to store other sequences, so if a sequence it passed, only the values of the other sequence are added, not the sequence itself)
|
|
procedure add(const value: IXQValue); |
Adds a IXQValue to the sequence. (Remember that XPath sequences are not allowed to store other sequences, so if a sequence it passed, only the values of the other sequence are added, not the sequence itself)
|
|
procedure addOrdered(const node: IXQValue); |
Adds a IXQValue to a node sequence. Nodes are sorted in document order and duplicates are skipped. (Remember that XPath sequences are not allowed to store other sequences, so if a sequence it passed, only the values of the other sequence are added, not the sequence itself)
|
Generated by PasDoc 0.14.0.
|