Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for checkConcurrentModification (0.26 sec)

  1. android/guava-tests/test/com/google/common/collect/IteratorsTest.java

          int index = 0;
          boolean canRemove;
    
          @Override
          public boolean hasNext() {
            checkConcurrentModification();
            return index < elements.size();
          }
    
          @Override
          public E next() {
            checkConcurrentModification();
            if (!hasNext()) {
              throw new NoSuchElementException();
            }
            canRemove = true;
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 03 13:01:51 UTC 2024
    - 55.7K bytes
    - Viewed (0)
Back to top