Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for feedkeys (0.23 sec)

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

          checkForConcurrentModification();
          if (next == null) {
            throw new NoSuchElementException();
          }
          current = next;
          seenKeys.add(current.key);
          do { // skip ahead to next unseen key
            next = next.next;
          } while ((next != null) && !seenKeys.add(next.key));
          return current.key;
        }
    
        @Override
        public void remove() {
          checkForConcurrentModification();
    Java
    - Registered: Fri May 03 12:43:13 GMT 2024
    - Last Modified: Fri Oct 13 14:11:58 GMT 2023
    - 27.2K bytes
    - Viewed (0)
Back to top