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

Method mult

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

@webref floatdict:method @brief Multiply a value

(String key, float amount)

Source from the content-addressed store, hash-verified

426 * @brief Multiply a value
427 */
428 public void mult(String key, float amount) {
429 int index = index(key);
430 if (index != -1) {
431 values[index] *= amount;
432 }
433 }
434
435
436 /**

Callers

nothing calls this directly

Calls 1

indexMethod · 0.95

Tested by

no test coverage detected