Re: [xsl] XSLT repetition constructs

Subject: Re: [xsl] XSLT repetition constructs
From: "Mukul Gandhi gandhi.mukul@xxxxxxxxx" <xsl-list-service@xxxxxxxxxxxxxxxxxxxxxx>
Date: Fri, 8 Mar 2019 05:35:41 -0000
Hi Mike,

On Thu, Mar 7, 2019 at 8:49 PM Michael Kay mike@xxxxxxxxxxxx <
xsl-list-service@xxxxxxxxxxxxxxxxxxxxxx> wrote:

> Your solution could be rewritten
>
> fold-left($x, (), function($a, $b) {$a, ($a[last()], 0)[1] + $b})
>

I can confirm that, above expression evaluates correctly.

But why does the following doesn't give the correct answer ?

<xsl:variable name="inpValues" select="(1,2,3,4)" as="xs:integer*"/>
fold-left($inpValues, (), function($a, $b) {$a, $a[last()] + $b})

i.e why can't $a[last()] work instead your's ($a[last()], 0)[1]  ?




-- 
Regards,
Mukul Gandhi

Current Thread