Returns the most negative (closest to negative infinity) of the two arguments. Special cases: min(NaN, (anything)) = NaN min((anything), NaN) = NaN min(+0.0, -0.0) = -0.0 min(-0.0, +0.0) = -0.0 @param d1 t
(double d1, double d2)
| 550 | * @return the smaller of {@code d1} and {@code d2}. |
| 551 | */ |
| 552 | public static native double min(double d1, double d2); |
| 553 | |
| 554 | /** |
| 555 | * Returns the most negative (closest to negative infinity) of the two |