minOfOrNull

inline fun <R : Comparable<R>> ComplexFloatArray.minOfOrNull(selector: (ComplexFloat) -> R): R?
inline fun <R : Comparable<R>> ComplexDoubleArray.minOfOrNull(selector: (ComplexDouble) -> R): R?

Returns the smallest value among all values produced by selector function applied to each element in the array or null if there are no elements.