Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 2 of 2 for forcePut (0.04 seconds)

  1. android/guava/src/com/google/common/collect/Maps.java

        }
    
        BiMap<K, V> unfiltered() {
          return (BiMap<K, V>) unfiltered;
        }
    
        @Override
        public @Nullable V forcePut(@ParametricNullness K key, @ParametricNullness V value) {
          checkArgument(apply(key, value));
          return unfiltered().forcePut(key, value);
        }
    
        @Override
        public BiMap<V, K> inverse() {
          return inverse;
        }
    
        @Override
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Wed Apr 01 17:27:13 GMT 2026
    - 157.6K bytes
    - Click Count (0)
  2. guava/src/com/google/common/collect/Maps.java

        }
    
        BiMap<K, V> unfiltered() {
          return (BiMap<K, V>) unfiltered;
        }
    
        @Override
        public @Nullable V forcePut(@ParametricNullness K key, @ParametricNullness V value) {
          checkArgument(apply(key, value));
          return unfiltered().forcePut(key, value);
        }
    
        @Override
        public void replaceAll(BiFunction<? super K, ? super V, ? extends V> function) {
          unfiltered()
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Wed Apr 01 17:27:13 GMT 2026
    - 163.4K bytes
    - Click Count (0)
Back to Top