Skip to content

Latest commit

 

History

History
27 lines (14 loc) · 426 Bytes

File metadata and controls

27 lines (14 loc) · 426 Bytes

Accumulate

Accumulate(list)

accumulate the values of list returning a new list.

Examples

>> Accumulate({1, 2, 3})
{1,3,6}

Implementation status

  • ✅ - full supported

Github