xsl-list
[Top] [All Lists]

Re: [xsl] XSLT repetition constructs

2019-03-08 03:42:35
On Fri, Mar 8, 2019 at 2:10 PM Michael Kay mike(_at_)saxonica(_dot_)com <
xsl-list-service(_at_)lists(_dot_)mulberrytech(_dot_)com> wrote:

Because if $a is an empty sequence (which is the situation on the first
call), then $a[last()] is an empty sequence, and ($x + ()) returns an empty
sequence, not $x.


Thanks, for the explanation.

I came up with following as well, which works (though may be inefficient)

<xsl:variable name="inpValues" select="(1,2,3,4)" as="xs:integer*"/>

fold-left($inpValues, (), function($a, $b) {$a, sum(for $idx in 1 to
count($a) return $inpValues[$idx]) + $b})




-- 
Regards,
Mukul Gandhi
--~----------------------------------------------------------------
XSL-List info and archive: http://www.mulberrytech.com/xsl/xsl-list
EasyUnsubscribe: http://lists.mulberrytech.com/unsub/xsl-list/1167547
or by email: xsl-list-unsub(_at_)lists(_dot_)mulberrytech(_dot_)com
--~--
<Prev in Thread] Current Thread [Next in Thread>