Skip to main content

List.Accumulate

สะสมค่าสรุปจากข้อมูลในรายการ

Syntax

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

Remarks

สะสมค่าสรุปจากข้อมูลในรายการ list โดยใช้ accumulator สามารถตั้งค่าพารามิเตอร์ Seed seed ที่เลือกได้

Examples

Example #1

สะสมค่าสรุปจากข้อมูลในรายการ {1, 2, 3, 4, 5} โดยใช้ ((สถานะ, ปัจจุบัน) => สถานะ + ปัจจุบัน )

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

Result:

15

Category

List.Transformation functions