- Sort Score
- Result 10 results
- Languages All
Results 1 - 2 of 2 for standardSubList (0.21 sec)
-
android/guava-tests/test/com/google/common/collect/ForwardingListTest.java
@Override public ListIterator<T> listIterator(int index) { return standardListIterator(index); } @Override public List<T> subList(int fromIndex, int toIndex) { return standardSubList(fromIndex, toIndex); } } @AndroidIncompatible // test-suite builders public static Test suite() { TestSuite suite = new TestSuite(); suite.addTestSuite(ForwardingListTest.class);
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Tue May 13 18:46:00 UTC 2025 - 6K bytes - Viewed (0) -
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
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Sun Dec 22 03:38:46 UTC 2024 - 7.8K bytes - Viewed (0)