Create a new key/value pair or change the value of one. @webref intdict:method @webBrief Create a new key/value pair or change the value of one
(String key, long amount)
| 374 | * @webBrief Create a new key/value pair or change the value of one |
| 375 | */ |
| 376 | public void set(String key, long amount) { |
| 377 | int index = index(key); |
| 378 | if (index == -1) { |
| 379 | create(key, amount); |
| 380 | } else { |
| 381 | values[index] = amount; |
| 382 | } |
| 383 | } |
| 384 | |
| 385 | |
| 386 | public void setIndex(int index, String key, long value) { |