Description
The functx:is-node-in-sequence-deep-equal function returns a boolean value indicating whether or not a node has the same contents as a node in a sequence. It determines whether the nodes have the same content using the built-in fn:deep-equal function. If $node or $seq is the empty sequence, it returns false.
For a similar function based on the identity of a node rather than its contents, see functx:is-node-in-sequence.
Arguments and Return TypeName | Type | Description |
$node |
node()? |
the node to test |
$seq |
node()* |
the sequence of nodes to search |
return value |
xs:boolean |
XQuery Function DeclarationSee XSLT definition. | declare namespace functx = "http://www.functx.com";
declare function functx:is-node-in-sequence-deep-equal
( $node as node()? ,
$seq as node()* ) as xs:boolean {
some $nodeInSeq in $seq satisfies deep-equal($nodeInSeq,$node)
} ; |
Exampleslet $in-xml := | <authors>
<author>
<fName>Kate</fName>
<lName>Jones</lName>
</author>
<author>
<fName>John</fName>
<lName>Doe</lName>
</author>
</authors> | let $anAuthor := | <author>
<fName>John</fName>
<lName>Doe</lName>
</author> | return |
XQuery Example | Results |
---|
functx:is-node-in-sequence-deep-equal(
$in-xml/author[1],$in-xml/author) |
true |
functx:is-node-in-sequence-deep-equal(
$anAuthor,$in-xml/author) |
true |
functx:is-node-in-sequence-deep-equal(
$in-xml/author[1],$in-xml) |
false |
See AlsoHistory |
Recommended Reading:
|