MCPcopy Create free account
hub / github.com/antlr/codebuff / max

Method max

output/java_guava/1.4.16/StatsAccumulator.java:378–381  ·  view source on GitHub ↗

Returns the highest value in the dataset. The count must be non-zero. Non-finite values If the dataset contains Double#NaN then the result is Double#NaN. If it contains Double#POSITIVE_INFINITY and not Double#NaN then the result is {@link Double#POSITIVE

()

Source from the content-addressed store, hash-verified

376
377
378 public double max() {
379 checkState(count != 0);
380 return max;
381 }
382
383 double sumOfSquaresOfDeltas() {
384 return sumOfSquaresOfDeltas;

Callers 2

addMethod · 0.45
addAllMethod · 0.45

Calls 1

checkStateMethod · 0.45

Tested by

no test coverage detected