MCPcopy Create free account
hub / github.com/ReadyTalk/avian / min

Method min

classpath/java/lang/Math.java:26–28  ·  view source on GitHub ↗
(double a, double b)

Source from the content-addressed store, hash-verified

24 }
25
26 public static double min(double a, double b) {
27 return (a > b ? b : a);
28 }
29
30 public static float max(float a, float b) {
31 return (a < b ? b : a);

Callers 12

mainMethod · 0.95
lastIndexOfMethod · 0.95
lastIndexOfMethod · 0.95
readMethod · 0.95
writeMethod · 0.95
andMethod · 0.95
andNotMethod · 0.95
orMethod · 0.95
xorMethod · 0.95
nextMethod · 0.95
nextBytesMethod · 0.95
seekMethod · 0.95

Calls

no outgoing calls

Tested by 1

mainMethod · 0.76