Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for nextNotInSkipMe (0.19 sec)

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

        @Override
        public boolean hasNext() {
          checkModCount();
          nextNotInSkipMe(cursor + 1);
          return (nextCursor < size()) || ((forgetMeNot != null) && !forgetMeNot.isEmpty());
        }
    
        @Override
        public E next() {
          checkModCount();
          nextNotInSkipMe(cursor + 1);
          if (nextCursor < size()) {
            cursor = nextCursor;
            canRemove = true;
    Java
    - Registered: Fri May 03 12:43:13 GMT 2024
    - Last Modified: Thu Feb 22 21:19:52 GMT 2024
    - 34K bytes
    - Viewed (0)
Back to top