- Sort Score
- Result 10 results
- Languages All
Results 1 - 2 of 2 for checkRemove (0.04 sec)
-
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) -
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)