reduceRightOrNull

inline fun ComplexFloatArray.reduceRightOrNull(operation: (ComplexFloat, acc: ComplexFloat) -> ComplexFloat): ComplexFloat?
inline fun ComplexDoubleArray.reduceRightOrNull(operation: (ComplexDouble, acc: ComplexDouble) -> ComplexDouble): ComplexDouble?

Accumulates value starting with the last element and applying operation from right to left to each element and current accumulator value.

Returns null if the array is empty.

Parameters

operation

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