Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 11 of 11 for checkPositionIndex (0.33 sec)

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

       */
      static <T extends @Nullable Object> UnmodifiableListIterator<T> forArrayWithPosition(
          T[] array, int position) {
        if (array.length == 0) {
          Preconditions.checkPositionIndex(position, array.length); // otherwise checked in ArrayItr
          return emptyListIterator();
        }
        return new ArrayItr<>(array, position);
      }
    
    Registered: Fri Dec 26 12:43:10 UTC 2025
    - Last Modified: Tue Sep 16 12:42:11 UTC 2025
    - 51.4K bytes
    - Viewed (0)
Back to top