[XSL-LIST Mailing List Archive Home] [By Thread] [By Date] [Recent Entries] [Reply To This Message] Re: Determine position in node sequence based on crite
In xquery you do
for $i at $pos in ../s return if (...) then $pos else () It's the same in this case, but (a) it relies on the "in" expression ../s returning a sequence of siblings, and (b) the second solution is likely to be O(n^2) while the first is likely to be O(n). Michael Kay Saxonica
|
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
|