List.Accumulate
List.Accumulate(list as list, seed as any, accumulator as function) as any
Nahromadí súhrnnú hodnotu z položiek v zozname list
pomocou funkcie accumulator
. Možno nastaviť voliteľný počiatočný parameter seed
.
Nahromadí súhrnnú hodnotu z položiek v zozname {1, 2, 3, 4, 5} pomocou parametra ((state, current) => state + current ).
Použitie
List.Accumulate({1, 2, 3, 4, 5}, 0, (state, current) => state + current)
Výkon
15