Multiply a value @webref intdict:method @webBrief Multiply a value
(String key, long amount)
| 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 | /** |