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

Method mult

core/src/processing/data/IntDict.java:452–457  ·  view source on GitHub ↗

@webref intdict:method @brief Multiply a value

(String key, int amount)

Source from the content-addressed store, hash-verified

450 * @brief Multiply a value
451 */
452 public void mult(String key, int amount) {
453 int index = index(key);
454 if (index != -1) {
455 values[index] *= amount;
456 }
457 }
458
459
460 /**

Callers

nothing calls this directly

Calls 1

indexMethod · 0.95

Tested by

no test coverage detected