Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for checkForComodification (0.14 sec)

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

            int expectedModCount = modCount;
    
            private void checkForComodification() {
              if (modCount != expectedModCount) {
                throw new ConcurrentModificationException();
              }
            }
    
            @Override
            public boolean hasNext() {
              checkForComodification();
              return nextEntry != null;
            }
    
            @Override
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Aug 07 16:05:33 UTC 2025
    - 19.1K bytes
    - Viewed (0)
  2. android/guava/src/com/google/common/collect/HashBiMap.java

            private int remaining = biMap.size;
    
            private void checkForComodification() {
              if (biMap.modCount != expectedModCount) {
                throw new ConcurrentModificationException();
              }
            }
    
            @Override
            public boolean hasNext() {
              checkForComodification();
              return index != ENDPOINT && remaining > 0;
            }
    
            @Override
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Mon Aug 11 19:31:30 UTC 2025
    - 36.2K bytes
    - Viewed (0)
Back to top