Add to a value @webref intdict:method @webBrief Add to a value
(String key, long amount)
| 433 | * @webBrief Add to a value |
| 434 | */ |
| 435 | public void add(String key, long amount) { |
| 436 | int index = index(key); |
| 437 | if (index == -1) { |
| 438 | create(key, amount); |
| 439 | } else { |
| 440 | values[index] += amount; |
| 441 | } |
| 442 | } |
| 443 | |
| 444 | |
| 445 | /** |