- Sort Score
- Result 10 results
- Languages All
Results 1 - 1 of 1 for getAndAccumulate (0.1 sec)
-
guava/src/com/google/common/util/concurrent/AtomicLongMap.java
/** * Adds {@code delta} to the value currently associated with {@code key}, and returns the old * value. */ @CanIgnoreReturnValue public long getAndAdd(K key, long delta) { return getAndAccumulate(key, delta, Long::sum); } /** * Updates the value currently associated with {@code key} with the specified function, and
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Mon Aug 11 19:31:30 UTC 2025 - 11.7K bytes - Viewed (0)