- Sort Score
- Num 10 results
- Language All
Results 1 - 3 of 3 for standardPollLast (0.09 seconds)
The search processing time has exceeded the limit. The displayed results may be partial.
-
guava-tests/test/com/google/common/collect/ForwardingNavigableSetTest.java
} @Override public @Nullable T pollFirst() { return standardPollFirst(); } @Override public @Nullable T pollLast() { return standardPollLast(); } @Override public SortedSet<T> headSet(T toElement) { return standardHeadSet(toElement); } @Override public SortedSet<T> tailSet(T fromElement) {Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Tue May 13 18:46:00 GMT 2025 - 7K bytes - Click Count (0) -
guava/src/com/google/common/collect/ForwardingNavigableSet.java
* If you override {@link #descendingIterator} you may wish to override {@link #pollLast} to * forward to this implementation. */ protected @Nullable E standardPollLast() { return Iterators.pollNext(descendingIterator()); } @ParametricNullness protected E standardFirst() { return iterator().next(); } @ParametricNullnessCreated: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Sun Dec 22 03:38:46 GMT 2024 - 8.8K bytes - Click Count (0) -
android/guava/src/com/google/common/collect/ForwardingNavigableSet.java
* If you override {@link #descendingIterator} you may wish to override {@link #pollLast} to * forward to this implementation. */ protected @Nullable E standardPollLast() { return Iterators.pollNext(descendingIterator()); } @ParametricNullness protected E standardFirst() { return iterator().next(); } @ParametricNullnessCreated: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Sun Dec 22 03:38:46 GMT 2024 - 8.8K bytes - Click Count (0)