@webref doubledict:method @brief Multiply a value
(String key, double amount)
| 441 | * @brief Multiply a value |
| 442 | */ |
| 443 | public void mult(String key, double amount) { |
| 444 | int index = index(key); |
| 445 | if (index != -1) { |
| 446 | values[index] *= amount; |
| 447 | } |
| 448 | } |
| 449 | |
| 450 | |
| 451 | /** |