List.Accumulate
सूची के आइटमों से एक सारांश मान एकत्रित करता है.
Syntax
List.Accumulate(
list as list,
seed as any,
accumulator as function
) as any
Remarks
accumulator
का उपयोग करके सूची list
, के आइटमों से एक सारांश मान एकत्रित करता है. एक वैकल्पिक मूल पैरामीटर, seed
, सेट हो सकता है.
Examples
Example #1
((state, current) => state + current ) का उपयोग करके सूची {1, 2, 3, 4, 5} के आइटमों से सारांश मान एकत्रित करता है .
List.Accumulate({1, 2, 3, 4, 5}, 0, (state, current) => state + current)
Result:
15
Category
List.Transformation functions