다음을 통해 공유


List.Accumulate

통사론

List.Accumulate(list as list, seed as any, accumulator as function) as any

소개

목록 list항목의 요약 값을 accumulator을 사용하여 누적합니다. 선택적 시드 매개 변수인 seed설정할 수 있습니다.

예제 1

{1, 2, 3, 4, 5} 목록의 항목에서 요약 값을 (state, current) => state + current 공식을 사용하여 누적합니다.

사용량

List.Accumulate({1, 2, 3, 4, 5}, 0, (state, current) => state + current)

출력

15