MCPcopy Create free account
hub / github.com/Aghajari/MathParser / max

Method max

MathParser/src/com/aghajari/math/Functions.java:134–139  ·  view source on GitHub ↗
(Double... a)

Source from the content-addressed store, hash-verified

132 }
133
134 public static double max(Double... a) {
135 double out = a[0];
136 for (double b : a)
137 out = Math.max(out, b);
138 return out;
139 }
140
141 public static double min(Double... a) {
142 double out = a[0];

Callers 2

findBestIndexMethod · 0.80
orderAgainMethod · 0.80

Calls

no outgoing calls

Tested by

no test coverage detected