xsl-list
[Top] [All Lists]

Re: [xsl] Diagram of XPath axes

2012-05-24 18:04:12


On 24/05/2012 18:02, Imsieke, Gerrit, le-tex wrote:
Just a side note: If you want to select the preceding elements *including the ancestors*, use the XPath 2 << operator [1], which selects the nodes that precede the current in document order [2].

In XSLT: select="*[. &lt;&lt; current()]"


It would be interesting to see a performance comparison of

//*[. << current()]

versus

ancestor::* | preceding::*

Both are rather heavily exposed to testing the relative order of two nodes in document order, which in some tree implementations (e.g. DOM) can be very inefficient.

If you don't care about document order, however, (ancestor::*, preceding::*) should be fastest.

There's also (ancestor::*/(. | (preceding-sibling::*/descendant::*))) if anyone wants to try it out.

I do wish we had an "until" operator, so we could do //* until (. is current()). You can do that of course with a recursive function.

Michael Kay
Saxonica



Michael Kay
Saxonica

--~------------------------------------------------------------------
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>
--~--

<Prev in Thread] Current Thread [Next in Thread>