foldRight

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

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.

Parameters

operation

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