Added Methods |
long accumulateAndGet(K, long, LongBinaryOperator)
|
Updates the value currently associated with {@code key} by combining it with {@code x}
via the specified accumulator function, returning the new value. |
long getAndAccumulate(K, long, LongBinaryOperator)
|
Updates the value currently associated with {@code key} by combining it with {@code x}
via the specified accumulator function, returning the old value. |
long getAndUpdate(K, LongUnaryOperator)
|
Updates the value currently associated with {@code key} with the specified function,
and returns the old value. |
long updateAndGet(K, LongUnaryOperator)
|
Updates the value currently associated with {@code key} with the specified function,
and returns the new value. |