Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for removeAll (0.22 sec)

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

        return changed;
      }
    
      @CanIgnoreReturnValue
      @Override
      public Collection<V> replaceValues(@ParametricNullness K key, Iterable<? extends V> values) {
        checkNotNull(values);
        Collection<V> result = removeAll(key);
        putAll(key, values);
        return result;
      }
    
      @LazyInit @CheckForNull private transient Collection<Entry<K, V>> entries;
    
      @Override
      public Collection<Entry<K, V>> entries() {
    Java
    - Registered: Fri May 03 12:43:13 GMT 2024
    - Last Modified: Tue Jun 15 21:08:00 GMT 2021
    - 6.6K bytes
    - Viewed (0)
  2. guava/src/com/google/common/collect/AbstractMultimap.java

        return changed;
      }
    
      @CanIgnoreReturnValue
      @Override
      public Collection<V> replaceValues(@ParametricNullness K key, Iterable<? extends V> values) {
        checkNotNull(values);
        Collection<V> result = removeAll(key);
        putAll(key, values);
        return result;
      }
    
      @LazyInit @CheckForNull private transient Collection<Entry<K, V>> entries;
    
      @Override
      public Collection<Entry<K, V>> entries() {
    Java
    - Registered: Fri Apr 05 12:43:09 GMT 2024
    - Last Modified: Tue Jun 15 21:08:00 GMT 2021
    - 7.1K bytes
    - Viewed (0)
Back to top