Function min( a, b )
- Description:
-
Returns the smaller of two integer values.
If the arguments have the same value, the result is that same value.
- Parameters:
-
- a (integer)
- an argument.
- b (integer)
- another argument.
- Return Value (integer):
- the smaller of
a
and b
.
- Signature:
- int min(int, int)