Tobia Conforto schreef:
Here's an interesting question: is one of the following more efficient
than the other?
<xsl:value-of select="//wh:thing" xmlns:wh="http://whatever"/>
<xsl:value-of select="//*[local-name() = 'thing' and namespace-uri() =
'http://whatever']"/>
I'm talking about runtime efficiency, not compilation speed (assuming
stylesheets are compiled in some way, which I believe is the case.)
The first is more efficient. The second has to evaluate twice.
Regards,
Suzan Foster.
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]