Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 1 of 1 for computeIfPresent (0.06 seconds)

  1. guava/src/com/google/common/collect/ImmutableMap.java

       * @throws UnsupportedOperationException always
       * @deprecated Unsupported operation.
       */
      @Deprecated
      @Override
      @DoNotCall("Always throws UnsupportedOperationException")
      public final @Nullable V computeIfPresent(
          K key, BiFunction<? super K, ? super V, ? extends @Nullable V> remappingFunction) {
        throw new UnsupportedOperationException();
      }
    
      /**
    Created: 2026-04-03 12:43
    - Last Modified: 2026-03-08 16:16
    - 44.7K bytes
    - Click Count (0)
Back to Top