Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for checkForConcurrentModification (0.12 sec)

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

              next();
            }
          }
          current = null;
        }
    
        private void checkForConcurrentModification() {
          if (modCount != expectedModCount) {
            throw new ConcurrentModificationException();
          }
        }
    
        @Override
        public boolean hasNext() {
          checkForConcurrentModification();
          return next != null;
        }
    
        @CanIgnoreReturnValue
        @Override
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Fri Oct 13 14:11:58 UTC 2023
    - 27.5K bytes
    - Viewed (0)
  2. android/guava/src/com/google/common/collect/CompactHashSet.java

          @Override
          public boolean hasNext() {
            return currentIndex >= 0;
          }
    
          @Override
          @ParametricNullness
          public E next() {
            checkForConcurrentModification();
            if (!hasNext()) {
              throw new NoSuchElementException();
            }
            indexToRemove = currentIndex;
            E result = element(currentIndex);
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Fri Oct 18 20:24:49 UTC 2024
    - 24K bytes
    - Viewed (0)
  3. guava/src/com/google/common/collect/CompactHashSet.java

          @Override
          public boolean hasNext() {
            return currentIndex >= 0;
          }
    
          @Override
          @ParametricNullness
          public E next() {
            checkForConcurrentModification();
            if (!hasNext()) {
              throw new NoSuchElementException();
            }
            indexToRemove = currentIndex;
            E result = element(currentIndex);
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Fri Oct 18 20:24:49 UTC 2024
    - 24.9K bytes
    - Viewed (0)
Back to top