See: Description
Interface | Description |
---|---|
ArrayItem |
Interface supported by different implementations of an XDM array item
|
Class | Description |
---|---|
ArrayAppend |
Implementation of the extension function array:append(array, item()*) => array
|
ArrayBlock |
An expression that delivers a fixed size array whose members are the result of evaluating
corresponding expressions: [a,b,c,d]
|
ArrayFilter |
Implementation of the extension function array:filter(array, function) => array
|
ArrayFlatten |
Implementation of the extension function array:_to-sequence(array) => item()*
|
ArrayFoldLeft |
Implementation of the extension function array:fold-left(array, item()*, function) => array
|
ArrayFoldRight |
Implementation of the extension function array:fold-left(array, item()*, function) => array
|
ArrayForEach |
Implementation of the extension function array:for-each(array, function) => array
|
ArrayForEachPair |
Implementation of the extension function array:for-each-pair(array, array, function) => array
|
ArrayFromSequence |
Implementation of the extension function array:_from-sequence(item()*) => array
|
ArrayGet |
Implementation of the extension function array:get(array, xs:integer) => item()*
|
ArrayHead |
Implementation of the extension function array:head(array) => item()*
|
ArrayInsertBefore |
Implementation of the extension function array:insert-before(array, xs:integer, item()*) => array
|
ArrayItemType |
An instance of this class represents a specific array item type, for example
function(xs:int) as xs:boolean
|
ArrayJoin |
Implementation of the extension function array:join(arrays) => array
|
ArrayRemove |
Implementation of the extension function array:remove(array, xs:integer) => array
|
ArrayReverse |
Implementation of the extension function array:reverse(array, xs:integer, xs:integer) => array
|
ArraySize |
Implementation of the extension function array:size(array) => integer
|
ArraySort |
Implementation of the extension function array:sort(array, function) => array
|
ArraySubarray |
Implementation of the extension function array:subarray(array, xs:integer, xs:integer) => array
|
ArrayTail |
Implementation of the extension function array:tail(array) => item()*
|
ArrayToSequence |
Implementation of the extension function array:_to-sequence(array) => item()*
|
SimpleArrayItem |
A simple implementation of XDM array items, in which the array is backed by a Java List.
|
This package implements arrays, as introduced in XPath/XQuery 3.1: arrays provide a list-like data structure that (unlike sequences) allows nesting.
Arrays are immutable, so that adding a new entry to an array creates a new array.
The entries in a array are arbitrary XDM sequences.
There are functions (each supported by its own implementation class) to create a new array, to add an entry to a array, to get an entry from an array, to get the size of an array, and so on..
Michael H. Kay
Saxonica Limited
June 2015
Copyright (c) 2004-2014 Saxonica Limited. All rights reserved.