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

Method mult

core/src/processing/data/IntList.java:509–515  ·  view source on GitHub ↗

@webref intlist:method @brief Multiply a value

(int index, int amount)

Source from the content-addressed store, hash-verified

507 * @brief Multiply a value
508 */
509 public void mult(int index, int amount) {
510 if (index < count) {
511 data[index] *= amount;
512 } else {
513 boundsProblem(index, "mult");
514 }
515 }
516
517 /**
518 * @webref intlist:method

Callers

nothing calls this directly

Calls 1

boundsProblemMethod · 0.95

Tested by

no test coverage detected