This is the mail archive of the xsl-list@mulberrytech.com mailing list .


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]

RE: Ordering of Blocks based on Input/Output


> > >     <xsl:if test="count($todo) > 0">
> >
> > This test does the same as test="$todo", which is
> > much more efficient for larger data,
> > if the processor doesn't optimize it anyway.
> >
> Quite right about the equivalence, though I don't know if
> doing count()
> on a node-set held in a variable will take as long as it would if
> gathering the node-set for the first time.

Many XSLT processors will "gather the node-set for the first time" when
evaluating the count() function - delayed evaluation and pipelining is the
norm in a functional language. That's why test="$todo" (or
test="boolean($todo)" for clarity) is faster, because it can stop as soon as
it sees the first node.

Saxon rewrites "count($todo) > 0" as "boolean($todo)" at compile time,
provided it knows at compile time that $todo is a node-set - which will
generally be the case for a variable, but not for a parameter.

Mike Kay


 XSL-List info and archive:  http://www.mulberrytech.com/xsl/xsl-list


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]