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