Increase the value associated with a specific key by 1. @webref intdict:method @webBrief Increase the value of a specific key value by 1
(String key)
| 410 | * @webBrief Increase the value of a specific key value by 1 |
| 411 | */ |
| 412 | public void increment(String key) { |
| 413 | add(key, 1); |
| 414 | } |
| 415 | |
| 416 | |
| 417 | /** |