Tags
Xslt3
- xsl:use-package
19 Apr 2026
Declares that the current stylesheet or package uses components from a named external XSLT 3.0 package.
- apply()
18 Apr 2026
Calls a function item with arguments supplied as an array, enabling dynamic dispatch with a variable argument list.
- array:append()
18 Apr 2026
Returns a new array with an additional member appended at the end.
- array:get()
18 Apr 2026
Returns the member of an array at a specified 1-based position.
- array:head()
18 Apr 2026
Returns the first member of an array; raises an error if the array is empty.
- array:join()
18 Apr 2026
Concatenates a sequence of arrays into a single array by combining all their members.
- array:put()
18 Apr 2026
Returns a new array with the member at a given position replaced by a new value.
- array:reverse()
18 Apr 2026
Returns a new array with the members in reverse order.
- array:size()
18 Apr 2026
Returns the number of members in an array.
- array:subarray()
18 Apr 2026
Returns a contiguous sub-array starting at a given position, with optional length.