MCPcopy Index your code
hub / github.com/antlr/codebuff / of

Method of

output/java_guava/1.4.19/Stats.java:101–105  ·  view source on GitHub ↗

Returns statistics over a dataset containing the given values. @param values a series of values, which will be converted to double values (this may cause loss of precision)

(Iterable<? extends Number> values)

Source from the content-addressed store, hash-verified

99
100
101 public static Stats of(Iterable<? extends Number> values) {
102 StatsAccumulator accumulator = new StatsAccumulator();
103 accumulator.addAll(values);
104 return accumulator.snapshot();
105 }
106
107 /**
108 * Returns statistics over a dataset containing the given values.

Callers 2

awaitStoppedMethod · 0.45
immutableEnumSetMethod · 0.45

Calls 2

addAllMethod · 0.95
snapshotMethod · 0.95

Tested by

no test coverage detected