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

Method mult

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

@webref doubledict:method @brief Multiply a value

(String key, double amount)

Source from the content-addressed store, hash-verified

441 * @brief Multiply a value
442 */
443 public void mult(String key, double amount) {
444 int index = index(key);
445 if (index != -1) {
446 values[index] *= amount;
447 }
448 }
449
450
451 /**

Callers

nothing calls this directly

Calls 1

indexMethod · 0.95

Tested by

no test coverage detected