min() is a scalar arithmertic function that evaluates two expressions and returns the smaller of two double
s.
Signature
min(double exp, double exp)
- double exp : expression returning
double
Returns
double
Examples
Find the smaller of 4.65 and 8.91.
min(4.65, 8.91)