Increments by one the value currently associated with key, and returns the new value.
(K key)
| 93 | */ |
| 94 | |
| 95 | @CanIgnoreReturnValue |
| 96 | public long incrementAndGet(K key) { |
| 97 | return addAndGet(key, 1); |
| 98 | } |
| 99 | |
| 100 | /** |
| 101 | * Decrements by one the value currently associated with {@code key}, and returns the new value. |
no test coverage detected