Decrements by one the value currently associated with key, and returns the new value.
(K key)
| 102 | */ |
| 103 | |
| 104 | @CanIgnoreReturnValue |
| 105 | public long decrementAndGet(K key) { |
| 106 | return addAndGet(key, -1); |
| 107 | } |
| 108 | |
| 109 | /** |
| 110 | * Adds {@code delta} to the value currently associated with {@code key}, and returns the new |
no test coverage detected