Multiply a value. @webref intdict:method @webBrief Multiply a value
(String key, int amount)
| 474 | * @webBrief Multiply a value |
| 475 | */ |
| 476 | public void mult(String key, int amount) { |
| 477 | int index = index(key); |
| 478 | if (index != -1) { |
| 479 | values[index] *= amount; |
| 480 | } |
| 481 | } |
| 482 | |
| 483 | |
| 484 | /** |