Math.minInt()

Signature

int minInt (int a, int b)

Domain

ACTION, CONDITION, QUERY, BUI

Description

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

Parameters

NameTypeDescription
aintAn argument.
bintAnother argument.

Returns

TypeDescription
intThe smaller of a and b.

Cautions

none

See Also

java.lang.Long#MIN_VALUE