public static long min (long a, long b)

Returns the smaller of two long values. That is, the result is the argument closer to the value of Long.MIN_VALUE. If the arguments have the same value, the result is that same value.

Parameters:
a    an argument.
b    another argument.

Returns:  the smaller of a and b.