List.Accumulate
語法
List.Accumulate(list as list, seed as any, accumulator as function) as any
關於
使用 list
以從清單 accumulator
中的項目累積摘要值。 或可設定選擇性的種子參數 seed
。
範例 1
使用 ((state, current) => state + current) 來從清單 {1, 2, 3, 4, 5} 中的項目累積摘要值。
使用方式
List.Accumulate({1, 2, 3, 4, 5}, 0, (state, current) => state + current)
輸出
15