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

Method checkMinMax

core/src/processing/data/IntList.java:530–537  ·  view source on GitHub ↗
(String functionName)

Source from the content-addressed store, hash-verified

528
529
530 private void checkMinMax(String functionName) {
531 if (count == 0) {
532 String msg =
533 String.format("Cannot use %s() on an empty %s.",
534 functionName, getClass().getSimpleName());
535 throw new RuntimeException(msg);
536 }
537 }
538
539
540 /**

Callers 4

minMethod · 0.95
minIndexMethod · 0.95
maxMethod · 0.95
maxIndexMethod · 0.95

Calls 1

formatMethod · 0.65

Tested by

no test coverage detected