MCPcopy Index your code
hub / github.com/benfry/processing4 / min

Method min

core/src/processing/data/DoubleList.java:490–494  ·  view source on GitHub ↗

@webref doublelist:method @brief Return the smallest value

()

Source from the content-addressed store, hash-verified

488 * @brief Return the smallest value
489 */
490 public double min() {
491 checkMinMax("min");
492 int index = minIndex();
493 return index == -1 ? Double.NaN : data[index];
494 }
495
496
497 public int minIndex() {

Callers 1

insertMethod · 0.45

Calls 2

checkMinMaxMethod · 0.95
minIndexMethod · 0.95

Tested by

no test coverage detected