Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for checkRemove (0.04 sec)

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

          entryIndex = backingMap.nextIndex(entryIndex);
          return result;
        }
    
        @Override
        public void remove() {
          checkForConcurrentModification();
          CollectPreconditions.checkRemove(toRemove != -1);
          size -= backingMap.removeEntry(toRemove);
          entryIndex = backingMap.nextIndexAfterRemove(entryIndex, toRemove);
          toRemove = -1;
          expectedModCount = backingMap.modCount;
        }
    Registered: Fri Dec 26 12:43:10 UTC 2025
    - Last Modified: Fri Dec 05 23:15:58 UTC 2025
    - 7.9K bytes
    - Viewed (0)
  2. android/guava/src/com/google/common/collect/HashBiMap.java

              remaining--;
              return result;
            }
    
            @Override
            public void remove() {
              checkForComodification();
              CollectPreconditions.checkRemove(indexToRemove != ABSENT);
              biMap.removeEntry(indexToRemove);
              if (index == biMap.size) {
                index = indexToRemove;
              }
              indexToRemove = ABSENT;
    Registered: Fri Dec 26 12:43:10 UTC 2025
    - Last Modified: Tue Dec 16 14:46:34 UTC 2025
    - 37.1K bytes
    - Viewed (0)
Back to top