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

Method div

core/src/processing/data/FloatDict.java:440–445  ·  view source on GitHub ↗

@webref floatdict:method @brief Divide a value

(String key, float amount)

Source from the content-addressed store, hash-verified

438 * @brief Divide a value
439 */
440 public void div(String key, float amount) {
441 int index = index(key);
442 if (index != -1) {
443 values[index] /= amount;
444 }
445 }
446
447
448 private void checkMinMax(String functionName) {

Callers

nothing calls this directly

Calls 1

indexMethod · 0.95

Tested by

no test coverage detected