Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for getAndAccumulate (0.1 sec)

  1. 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)
Back to top