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

Method min

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

@webref floatlist:method @brief Return the smallest value

()

Source from the content-addressed store, hash-verified

561 * @brief Return the smallest value
562 */
563 public float min() {
564 checkMinMax("min");
565 int index = minIndex();
566 return index == -1 ? Float.NaN : data[index];
567 }
568
569
570 public int minIndex() {

Callers 1

insertMethod · 0.45

Calls 2

checkMinMaxMethod · 0.95
minIndexMethod · 0.95

Tested by

no test coverage detected