Increase the value associated with a specific key by 1. @webref intdict:method @brief Increase the value of a specific key value by 1
(String key)
| 406 | * @brief Increase the value of a specific key value by 1 |
| 407 | */ |
| 408 | public void increment(String key) { |
| 409 | add(key, 1); |
| 410 | } |
| 411 | |
| 412 | |
| 413 | /** |