MCPcopy Index your code
hub / github.com/processing/processing / min

Method min

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

@webref doublelist:method @brief Return the smallest value

()

Source from the content-addressed store, hash-verified

565 * @brief Return the smallest value
566 */
567 public double min() {
568 checkMinMax("min");
569 int index = minIndex();
570 return index == -1 ? Double.NaN : data[index];
571 }
572
573
574 public int minIndex() {

Callers 1

insertMethod · 0.45

Calls 2

checkMinMaxMethod · 0.95
minIndexMethod · 0.95

Tested by

no test coverage detected