max Of Or Null
inline fun <R : Comparable<R>> ComplexFloatArray.maxOfOrNull(selector: (ComplexFloat) -> R): R?
Content copied to clipboard
inline fun <R : Comparable<R>> ComplexDoubleArray.maxOfOrNull(selector: (ComplexDouble) -> R): R?
Content copied to clipboard
Returns the largest value among all values produced by selector function applied to each element in the array or null
if there are no elements.