Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for removeValuesForKey (0.36 sec)

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

          return new NavigableKeySet(sortedMap().tailMap(fromElement, inclusive));
        }
      }
    
      /** Removes all values for the provided key. */
      private void removeValuesForKey(@Nullable Object key) {
        Collection<V> collection = Maps.safeRemove(map, key);
    
        if (collection != null) {
          int count = collection.size();
          collection.clear();
          totalSize -= count;
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Tue Aug 12 15:51:57 UTC 2025
    - 48.2K bytes
    - Viewed (0)
  2. android/guava/src/com/google/common/collect/Multimaps.java

          return multimap.keySet().size();
        }
    
        @Override
        protected Set<Entry<K, Collection<V>>> createEntrySet() {
          return new EntrySet();
        }
    
        void removeValuesForKey(@Nullable Object key) {
          multimap.keySet().remove(key);
        }
    
        @WeakOuter
        final class EntrySet extends Maps.EntrySet<K, Collection<V>> {
          @Override
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Sat Aug 09 01:14:59 UTC 2025
    - 86.6K bytes
    - Viewed (0)
  3. guava/src/com/google/common/collect/Multimaps.java

          return multimap.keySet().size();
        }
    
        @Override
        protected Set<Entry<K, Collection<V>>> createEntrySet() {
          return new EntrySet();
        }
    
        void removeValuesForKey(@Nullable Object key) {
          multimap.keySet().remove(key);
        }
    
        @WeakOuter
        final class EntrySet extends Maps.EntrySet<K, Collection<V>> {
          @Override
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Sat Aug 09 01:14:59 UTC 2025
    - 86.9K bytes
    - Viewed (0)
Back to top