xsl-list
[Top] [All Lists]

RE: [xsl] Using divide-and-conquer recursion to create a cumulative sequence

2009-12-11 17:16:44
Inevitably I got that slightly wrong, since we want to output the running
total for each item, not just the final result. It should be

  <xsl:iterate select="input">
    <xsl:param name="total-so-far" select="0"/>
    <xsl:variable name="next-total" select="$total-so-far + ."/>
    <xsl:sequence select="$next-total"/>
    <xsl:next-iteration>     
        <xsl:with-param name="total-so-far" select="$next-total"/>
    </xsl:next-iteration>
  </xsl:iterate>

Regards,

Michael Kay
http://www.saxonica.com/
http://twitter.com/michaelhkay 


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