Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for Turner (0.17 sec)

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

        @Override
        @ParametricNullness
        public T next() {
          if (valueOrSentinel == SENTINEL) {
            throw new NoSuchElementException();
          }
          // The field held either a T or SENTINEL, and it turned out not to be SENTINEL.
          @SuppressWarnings("unchecked")
          T t = (T) valueOrSentinel;
          valueOrSentinel = SENTINEL;
          return t;
        }
      }
    
      /**
    Java
    - Registered: Fri Apr 05 12:43:09 GMT 2024
    - Last Modified: Tue Jan 30 00:14:39 GMT 2024
    - 50.5K bytes
    - Viewed (0)
Back to top