foldRightIndexed
Accumulates value starting with initial value and applying operation from right to left to each element with its index in the original array and current accumulator value.
Returns the specified initial value if the array is empty.
Since Kotlin
1.0Parameters
function that takes the index of an element, the element itself and current accumulator value, and calculates the next accumulator value.
Accumulates value starting with initial value and applying operation from right to left to each element with its index in the original list and current accumulator value.
Returns the specified initial value if the list is empty.
Since Kotlin
1.0Parameters
function that takes the index of an element, the element itself and current accumulator value, and calculates the next accumulator value.