Subject: RE: Re: XSLT 2.0: On xsl:sequence and xsl:copy-of
From: "Michael Kay" <mhk@xxxxxxxxx>
Date: Fri, 10 Oct 2003 23:09:29 +0100
|
> Whenever a sequence involves a node, isn't it implicitly a
> reference?
Yes, it is.
> The only scenario I can think of where this might
> not be true is in XQuery, where you can have
>
> (element a, element b, element c)
Even here, the containment is not exclusive, since you can filter this
sequence to get a new sequence that "contains" the same nodes.
>
> However, this is not, to my understanding, supported in XSLT2.
>
XSLT 2.0 can now do this too, for example
<xsl:variable name="e" as="element()*">
<a/><b/><c/>
</xsl:variable>
Michael Kay
XSL-List info and archive: http://www.mulberrytech.com/xsl/xsl-list
|