MCPcopy Create free account
hub / github.com/davidgiven/luje / min

Method min

lib/java/lang/Math.java:552–552  ·  view source on GitHub ↗

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)

Source from the content-addressed store, hash-verified

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

Callers 3

runTaskMethod · 0.95
readMethod · 0.95
readMethod · 0.95

Calls

no outgoing calls

Tested by

no test coverage detected