MCPcopy Create free account
hub / github.com/benfry/processing4 / mult

Method mult

core/src/processing/data/LongDict.java:462–467  ·  view source on GitHub ↗

Multiply a value @webref intdict:method @webBrief Multiply a value

(String key, long amount)

Source from the content-addressed store, hash-verified

460 * @webBrief Multiply a value
461 */
462 public void mult(String key, long amount) {
463 int index = index(key);
464 if (index != -1) {
465 values[index] *= amount;
466 }
467 }
468
469
470 /**

Callers

nothing calls this directly

Calls 1

indexMethod · 0.95

Tested by

no test coverage detected