Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for Account (0.19 sec)

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

        }
    
        @Override
        public boolean remove(@CheckForNull Object key) {
          int count = 0;
          Collection<V> collection = map().remove(key);
          if (collection != null) {
            count = collection.size();
            collection.clear();
            totalSize -= count;
          }
          return count > 0;
        }
    
        @Override
        public void clear() {
          Iterators.clear(iterator());
        }
    Java
    - Registered: Fri Apr 05 12:43:09 GMT 2024
    - Last Modified: Fri Oct 13 14:11:58 GMT 2023
    - 48K bytes
    - Viewed (0)
  2. android/guava/src/com/google/common/collect/AbstractMapBasedMultimap.java

        @Override
        public boolean remove(@CheckForNull Object key) {
          int count = 0;
          Collection<V> collection = map().remove(key);
          if (collection != null) {
            count = collection.size();
            collection.clear();
            totalSize -= count;
          }
          return count > 0;
        }
    
        @Override
        public void clear() {
          Iterators.clear(iterator());
        }
    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)
Back to top