Tags
Reference
- 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.
- format-date()
18 Apr 2026
Formats an xs:date value into a human-readable string using a picture pattern, with optional locale and calendar support.
- format-dateTime()
18 Apr 2026
Formats an xs:dateTime value into a human-readable string using a picture pattern, with optional locale and calendar support.
- format-number()
18 Apr 2026
Formats a number as a string using a picture pattern and an optional named decimal format, following the same rules as Java's DecimalFormat.
- format-time()
18 Apr 2026
Formats an xs:time value into a human-readable string using a picture pattern, with optional locale and calendar support.
- function-arity()
18 Apr 2026
Returns the number of arguments (arity) that a function item accepts.
- function-available()
18 Apr 2026
Returns true if the named function is available in the current XSLT processor, supporting portable use of extension functions.