Michael Kay wrote:
So whereas the sequence (a,b) is not necessarily in
document order, the sequence ./(a,b) is, by virtue of the
"/" operator.
Ok, thanks. If I understood well, in the following
example:
<xsl:variable name="a" select="elem/a"/>
<xsl:variable name="b" select="elem/b"/>
<xsl:sequence select="elem/b, elem/a"/>
<xsl:sequence select="$b, $a"/>
<xsl:sequence select="elem/(b, a)"/>
when applied in the context of:
<elem>
<a/>
<b/>
</elem>
the sequences will be resp. (with an ad-hoc syntax):
(<b/>, <a/>)
(<b/>, <a/>)
(<a/>, <b/>)
In the two first cases, duplicates can also appear, not in
the last one.
Is it correct?
Thanks,
--drkm
p4.vert.ukl.yahoo.com uncompressed/chunked Fri Aug 25 12:13:40 GMT 2006
___________________________________________________________________________
Découvrez un nouveau moyen de poser toutes vos questions quelque soit le sujet
!
Yahoo! Questions/Réponses pour partager vos connaissances, vos opinions et vos
expériences.
http://fr.answers.yahoo.com
--~------------------------------------------------------------------
XSL-List info and archive: http://www.mulberrytech.com/xsl/xsl-list
To unsubscribe, go to: http://lists.mulberrytech.com/xsl-list/
or e-mail: <mailto:xsl-list-unsubscribe(_at_)lists(_dot_)mulberrytech(_dot_)com>
--~--