arrayFoldRight

arrayFoldRight

> Functions

Reduce the list array [v1, v2, ..., vn] from the right starting from the value v0 and applying the function f. Equivalent to: f(v1, f(v2, ..., f(vn, v0)))

Parameters
Return