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

Method max

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

Source from the content-addressed store, hash-verified

20 private Math() { }
21
22 public static double max(double a, double b) {
23 return (a < b ? b : a);
24 }
25
26 public static double min(double a, double b) {
27 return (a > b ? b : a);

Callers 6

andNotMethod · 0.95
orMethod · 0.95
xorMethod · 0.95
intersectsMethod · 0.95
growMethod · 0.95
addMethod · 0.95

Calls

no outgoing calls

Tested by

no test coverage detected