Search Options

Results per page
Sort
Preferred Languages
Advance

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

  1. android/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(@CheckForNull Object key) {
        Collection<V> collection = Maps.safeRemove(map, key);
    
        if (collection != null) {
          int count = collection.size();
          collection.clear();
    Java
    - Registered: Fri May 03 12:43:13 GMT 2024
    - Last Modified: Fri Oct 13 14:11:58 GMT 2023
    - 46.6K bytes
    - Viewed (0)
  2. 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(@CheckForNull Object key) {
        Collection<V> collection = Maps.safeRemove(map, key);
    
        if (collection != null) {
          int count = collection.size();
          collection.clear();
    Java
    - Registered: Fri Apr 05 12:43:09 GMT 2024
    - Last Modified: Fri Oct 13 14:11:58 GMT 2023
    - 48K bytes
    - Viewed (0)
  3. 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(@CheckForNull Object key) {
          multimap.keySet().remove(key);
        }
    
        @WeakOuter
        class EntrySet extends Maps.EntrySet<K, Collection<V>> {
          @Override
    Java
    - Registered: Fri May 03 12:43:13 GMT 2024
    - Last Modified: Wed May 01 18:44:57 GMT 2024
    - 86.4K bytes
    - Viewed (0)
Back to top