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

Method div

core/src/processing/data/DoubleDict.java:455–460  ·  view source on GitHub ↗

@webref doubledict:method @brief Divide a value

(String key, double amount)

Source from the content-addressed store, hash-verified

453 * @brief Divide a value
454 */
455 public void div(String key, double amount) {
456 int index = index(key);
457 if (index != -1) {
458 values[index] /= amount;
459 }
460 }
461
462
463 private void checkMinMax(String functionName) {

Callers

nothing calls this directly

Calls 1

indexMethod · 0.95

Tested by

no test coverage detected