|
[XSL-LIST Mailing List Archive Home] [By Thread] [By Date] [Recent Entries] [Reply To This Message] Union of XPath sequences and the meaning of the uniqu
Hi,
The union operator in XPath 2.0 is described as eliminating
duplicates from the two sequences that it is combining. What is the
criterion used for determining if two nodes in the resulting sequence
are unique? The following code :
<?xml version="1.0"?>
<xsl:stylesheet version="2.0"
xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:output omit-xml-declaration="yes" />
<xsl:template match="/">
<xsl:variable name="a">
<xsl:sequence select="2" />
</xsl:variable>
<xsl:variable name="b">
<xsl:sequence select="2" />
</xsl:variable>
<xsl:copy-of select="$a | $a" />
</xsl:template>
</xsl:stylesheet>
....produces "2", which is what I would expect, but the following code :
<?xml version="1.0"?>
<xsl:stylesheet version="2.0"
xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:output omit-xml-declaration="yes" />
<xsl:template match="/">
<xsl:variable name="a">
<xsl:sequence select="2" />
</xsl:variable>
<xsl:variable name="b">
<xsl:sequence select="2" />
</xsl:variable>
<xsl:copy-of select="$a | $b" />
</xsl:template>
</xsl:stylesheet>
....produces "22"... which seems to indicate that even atomic values
in sequences are assigned unique node ids, and the uniqueness is
maintained across all sequences within the XSL program. Am I right?
Thanks,
Kenneth
|
PURCHASE STYLUS STUDIO ONLINE TODAY!Purchasing Stylus Studio from our online shop is Easy, Secure and Value Priced! Download The World's Best XML IDE!Accelerate XML development with our award-winning XML IDE - Download a free trial today! Subscribe in XML format
|

Cart








