Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for subListImpl (0.11 sec)

  1. 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: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Fri May 12 15:26:39 UTC 2023
    - 7.9K bytes
    - Viewed (0)
  2. 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: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Fri May 12 15:26:39 UTC 2023
    - 7.9K bytes
    - Viewed (0)
Back to top