- Sort Score
- Result 10 results
- Languages All
Results 1 - 3 of 3 for standardHeadSet (0.06 sec)
-
android/guava-tests/test/com/google/common/collect/ForwardingNavigableSetTest.java
} @Override public @Nullable T pollLast() { return standardPollLast(); } @Override public SortedSet<T> headSet(T toElement) { return standardHeadSet(toElement); } @Override public SortedSet<T> tailSet(T fromElement) { return standardTailSet(fromElement); } } @AndroidIncompatible // test-suite buildersRegistered: Fri Dec 26 12:43:10 UTC 2025 - Last Modified: Tue May 13 18:46:00 UTC 2025 - 7K bytes - Viewed (0) -
guava/src/com/google/common/collect/ForwardingNavigableSet.java
* boolean)} method. If you override {@link #headSet(Object, boolean)}, you may wish to override * {@link #headSet(Object)} to forward to this implementation. */ protected SortedSet<E> standardHeadSet(@ParametricNullness E toElement) { return headSet(toElement, false); } @Override public NavigableSet<E> tailSet(@ParametricNullness E fromElement, boolean inclusive) {Registered: Fri Dec 26 12:43:10 UTC 2025 - Last Modified: Sun Dec 22 03:38:46 UTC 2024 - 8.8K bytes - Viewed (0) -
android/guava/src/com/google/common/collect/Sets.java
return forward.tailSet(toElement, inclusive).descendingSet(); } @Override public SortedSet<E> headSet(@ParametricNullness E toElement) { return standardHeadSet(toElement); } @Override public NavigableSet<E> tailSet(@ParametricNullness E fromElement, boolean inclusive) { return forward.headSet(fromElement, inclusive).descendingSet(); }
Registered: Fri Dec 26 12:43:10 UTC 2025 - Last Modified: Mon Sep 22 18:35:44 UTC 2025 - 81.6K bytes - Viewed (0)