foldRightIndexed

inline fun <R> ComplexFloatArray.foldRightIndexed(initial: R, operation: (index: Int, ComplexFloat, acc: R) -> R): R
inline fun <R> ComplexDoubleArray.foldRightIndexed(initial: R, operation: (index: Int, ComplexDouble, acc: R) -> R): R

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.

Parameters

operation

function that takes the index of an element, the element itself and current accumulator value, and calculates the next accumulator value.