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