Function: generalComparison()
generalComparison(
fn,a,b):boolean
Defined in: lang-xquery/src/utils/general-comparison.ts:6
Applies fn pairwise across all items of a and b, returning true as
soon as any pair satisfies the predicate - XQuery's general comparison
semantics for sequence operands.
Parameters
| Parameter | Type |
|---|---|
fn | (a, b) => boolean |
a | any |
b | any |
Returns
boolean