Tags
Xslt3
- array:tail()
18 Apr 2026
Returns a new array containing all members except the first; raises an error if the array is empty.
- filter()
18 Apr 2026
Returns items from a sequence for which a predicate function returns true, discarding all others.
- fold-left()
18 Apr 2026
Accumulates a result by applying a function left-to-right over a sequence, starting from an initial zero value.
- fold-right()
18 Apr 2026
Accumulates a result by applying a function right-to-left over a sequence, starting from an initial zero value.
- for-each-pair()
18 Apr 2026
Applies a binary function to corresponding items from two sequences, returning the concatenated results.
- for-each()
18 Apr 2026
Applies a function to each item of a sequence and returns the concatenation of all results.
- function-arity()
18 Apr 2026
Returns the number of arguments (arity) that a function item accepts.
- function-lookup()
18 Apr 2026
Returns a function item identified by its QName and arity, or the empty sequence if no such function is available.
- function-name()
18 Apr 2026
Returns the QName of a named function item, or the empty sequence if the function is anonymous.
- map:contains()
18 Apr 2026
Returns true if a map contains an entry with the specified key, false otherwise.