min

fun min(a: Double, b: Double): Double

Returns the smaller of two double values. That is, the result is the value closer to negative infinity. If the arguments have the same value, the result is that same value. If either value is NaN, then the result is NaN. Unlike the numerical comparison operators, this method considers negative zero to be strictly smaller than positive zero. If one argument is positive zero and the other is negative zero, the result is negative zero.

Return

the smaller of a and b.

Parameters

a

an argument.

b

another argument.


fun min(a: Int, b: Int): Int
fun min(a: Float, b: Float): Float