Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for subListImpl (0.19 sec)

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

       * methods, you may wish to override {@link #subList(int, int)} to forward to this implementation.
       *
       * @since 7.0
       */
      protected List<E> standardSubList(int fromIndex, int toIndex) {
        return Lists.subListImpl(this, fromIndex, toIndex);
      }
    
      /**
       * A sensible definition of {@link #equals(Object)} in terms of {@link #size} and {@link
       * #iterator}. If you override either of those methods, you may wish to override {@link
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 12 15:26:39 UTC 2023
    - 7.9K bytes
    - Viewed (0)
  2. android/guava/src/com/google/common/collect/ForwardingList.java

       * methods, you may wish to override {@link #subList(int, int)} to forward to this implementation.
       *
       * @since 7.0
       */
      protected List<E> standardSubList(int fromIndex, int toIndex) {
        return Lists.subListImpl(this, fromIndex, toIndex);
      }
    
      /**
       * A sensible definition of {@link #equals(Object)} in terms of {@link #size} and {@link
       * #iterator}. If you override either of those methods, you may wish to override {@link
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 12 15:26:39 UTC 2023
    - 7.9K bytes
    - Viewed (0)
  3. guava-gwt/src-super/com/google/common/collect/super/com/google/common/collect/ImmutableList.java

      @Override
      public UnmodifiableIterator<E> iterator() {
        return listIterator();
      }
    
      @Override
      public ImmutableList<E> subList(int fromIndex, int toIndex) {
        return unsafeDelegateList(Lists.subListImpl(this, fromIndex, toIndex));
      }
    
      @Override
      public UnmodifiableListIterator<E> listIterator() {
        return listIterator(0);
      }
    
      @Override
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed May 08 03:01:02 UTC 2024
    - 11K bytes
    - Viewed (0)
  4. android/guava/src/com/google/common/collect/Lists.java

        return new AbstractListWrapper<>(list).listIterator(index);
      }
    
      /** An implementation of {@link List#subList(int, int)}. */
      static <E extends @Nullable Object> List<E> subListImpl(
          final List<E> list, int fromIndex, int toIndex) {
        List<E> wrapper;
        if (list instanceof RandomAccess) {
          wrapper =
              new RandomAccessListWrapper<E>(list) {
                @Override
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 29 16:48:36 UTC 2024
    - 41.5K bytes
    - Viewed (0)
  5. guava/src/com/google/common/collect/Lists.java

        return new AbstractListWrapper<>(list).listIterator(index);
      }
    
      /** An implementation of {@link List#subList(int, int)}. */
      static <E extends @Nullable Object> List<E> subListImpl(
          final List<E> list, int fromIndex, int toIndex) {
        List<E> wrapper;
        if (list instanceof RandomAccess) {
          wrapper =
              new RandomAccessListWrapper<E>(list) {
                @Override
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 29 16:48:36 UTC 2024
    - 41.9K bytes
    - Viewed (0)
Back to top