Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 4 of 4 for reversePosition (0.11 seconds)

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

          return reverse(forwardList.subList(reversePosition(toIndex), reversePosition(fromIndex)));
        }
    
        @Override
        public Iterator<T> iterator() {
          return listIterator();
        }
    
        @Override
        public ListIterator<T> listIterator(int index) {
          int start = reversePosition(index);
          ListIterator<T> forwardIterator = forwardList.listIterator(start);
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Mon Feb 23 16:38:09 GMT 2026
    - 42.1K bytes
    - Click Count (0)
  2. guava/src/com/google/common/collect/Lists.java

          return reverse(forwardList.subList(reversePosition(toIndex), reversePosition(fromIndex)));
        }
    
        @Override
        public Iterator<T> iterator() {
          return listIterator();
        }
    
        @Override
        public ListIterator<T> listIterator(int index) {
          int start = reversePosition(index);
          ListIterator<T> forwardIterator = forwardList.listIterator(start);
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Mon Feb 23 16:38:09 GMT 2026
    - 42.5K bytes
    - Click Count (0)
  3. android/guava/src/com/google/common/collect/ImmutableList.java

        }
    
        @Override
        public ImmutableList<E> subList(int fromIndex, int toIndex) {
          checkPositionIndexes(fromIndex, toIndex, size());
          return forwardList.subList(reversePosition(toIndex), reversePosition(fromIndex)).reverse();
        }
    
        @Override
        public E get(int index) {
          checkElementIndex(index, size());
          return forwardList.get(reverseIndex(index));
        }
    
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Tue Sep 23 17:50:58 GMT 2025
    - 27.5K bytes
    - Click Count (0)
  4. guava/src/com/google/common/collect/ImmutableList.java

        }
    
        @Override
        public ImmutableList<E> subList(int fromIndex, int toIndex) {
          checkPositionIndexes(fromIndex, toIndex, size());
          return forwardList.subList(reversePosition(toIndex), reversePosition(fromIndex)).reverse();
        }
    
        @Override
        public E get(int index) {
          checkElementIndex(index, size());
          return forwardList.get(reverseIndex(index));
        }
    
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Sun Mar 08 16:16:42 GMT 2026
    - 30.6K bytes
    - Click Count (0)
Back to Top