Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for accumulateAndGet (0.12 sec)

  1. guava/src/com/google/common/util/concurrent/AtomicDouble.java

       *
       * @param delta the value to add
       * @return the updated value
       */
      @CanIgnoreReturnValue
      public final double addAndGet(double delta) {
        return accumulateAndGet(delta, Double::sum);
      }
    
      /**
       * Atomically updates the current value with the results of applying the given function to the
       * current and given values.
       *
       * @param x the update value
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Apr 04 09:45:04 UTC 2023
    - 9.5K bytes
    - Viewed (0)
Back to top