home contribute faq download

FunctX XSLT Functions

functx:is-node-in-sequence-deep-equal

Whether an XML node is in a sequence, based on contents and attributes

Google
Webxsltfunctions.com

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 Type

NameTypeDescription
$node node()? the node to test
$seq node()* the sequence of nodes to search
return value xs:boolean

XSLT Function Declaration

See XQuery definition.
<xsl:function name="functx:is-node-in-sequence-deep-equal" as="xs:boolean"
              xmlns:functx="http://www.functx.com">
  <xsl:param name="node" as="node()?"/>
  <xsl:param name="seq" as="node()*"/>

  <xsl:sequence select="
   some $nodeInSeq in $seq satisfies deep-equal($nodeInSeq,$node)
 "/>

</xsl:function>

Examples

<xsl:variable name="in-xml" as="item()*">
<authors>
   <author>
      <fName>Kate</fName>
      <lName>Jones</lName>
   </author>
   <author>
      <fName>John</fName>
      <lName>Doe</lName>
   </author>
</authors>
</xsl:variable>
<xsl:variable name="anAuthor" as="item()*">
<author>
  <fName>John</fName>
  <lName>Doe</lName>
</author>
</xsl:variable>
XPath ExampleResults
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 Also

functx:is-value-in-sequenceWhether an atomic value appears in a sequence
functx:is-node-in-sequenceWhether an XML node is in a sequence, based on node identity
functx:distinct-deepThe XML nodes with distinct values, taking into account attributes and descendants
fn:deep-equalWhether two nodes have the same content and attributes

History

Published OnLast UpdatedContributor(s)
2006-06-272007-02-26Priscilla Walmsley, Datypic, pwalmsley@datypic.com, http://www.datypic.com
Datypic XSLT Services

Recommended Reading:

XQuery