A RESTful browser for eXist Java-Based Function Modules


http://www.w3.org/2005/xpath-functions
A module with the XQuery/XPath Core Library Functions

deep-equal($items-1 as item()*, $items-2 as item()*) xs:boolean
Returns true iff every item in $items-1 is deep-equal to the item at the same position in $items-2, false otherwise. If both $items-1 and $items-2 are the empty sequence, returns true().
$items-1The first item sequence
$items-2The second item sequence

Returns true() if the sequences are deep-equal, false() otherwise

deep-equal($items-1 as item()*, $items-2 as item()*, $collation-uri as xs:string) xs:boolean
Returns true iff every item in $items-1 is deep-equal to the item at the same position in $items-2, false otherwise. If both $items-1 and $items-2 are the empty sequence, returns true(). Comparison collation is specified by $collation-uri. The third argument $collation-uri is relative so you only need to specify the last part of a valid full collation-uri, e.g. '?lang=sv-SE', 'lang=sv-SE;strength=primary;decomposition=standard' or 'swedish'.
$items-1The first item sequence
$items-2The second item sequence
$collation-uriThe collation URI

Returns true() if the sequences are deep-equal, false() otherwise
Return to list of all modules