min Of
inline fun <R : Comparable<R>> ComplexFloatArray.minOf(selector: (ComplexFloat) -> R): R
Content copied to clipboard
inline fun <R : Comparable<R>> ComplexDoubleArray.minOf(selector: (ComplexDouble) -> R): R
Content copied to clipboard
Returns the smallest value among all values produced by selector function applied to each element in the array.
Throws
if the array is empty.