foldRight
Accumulates value starting with initial value and applying operation from right to left to each element and current accumulator value.
Returns the specified initial value if the array is empty.
Since Kotlin
1.0Parameters
function that takes an element 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 and current accumulator value.
Returns the specified initial value if the list is empty.
Since Kotlin
1.0Parameters
function that takes an element 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 and current accumulator value.
Returns the specified initial value if the array is empty.
Since Kotlin
1.3Parameters
function that takes an element and current accumulator value, and calculates the next accumulator value.