List.Accumulate
List.Accumulate(list as list, seed as any, accumulator as function) as any
kullanarak listedeki list
öğelerden bir özet değeri biriktirir accumulator
. İsteğe bağlı bir seed parametresi ayarlanabilir seed
.
((state, current) => state + current ) kullanarak {1, 2, 3, 4, 5} listesindeki öğelerden özet değerini biriktirir.
Kullanım
List.Accumulate({1, 2, 3, 4, 5}, 0, (state, current) => state + current)
Çıkış
15