- Sort Score
- Num 10 results
- Language All
Results 1 - 10 of 56 for tailSet (0.15 seconds)
-
guava/src/com/google/common/collect/ForwardingNavigableSet.java
} @Override public NavigableSet<E> tailSet(@ParametricNullness E fromElement, boolean inclusive) { return delegate().tailSet(fromElement, inclusive); } /** * A sensible definition of {@link #tailSet(Object)} in terms of the {@link #tailSet(Object, * boolean)} method. If you override {@link #tailSet(Object, boolean)}, you may wish to override * {@link #tailSet(Object)} to forward to this implementation. */
Created: 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
} @Override public NavigableSet<E> tailSet(@ParametricNullness E fromElement, boolean inclusive) { return delegate().tailSet(fromElement, inclusive); } /** * A sensible definition of {@link #tailSet(Object)} in terms of the {@link #tailSet(Object, * boolean)} method. If you override {@link #tailSet(Object, boolean)}, you may wish to override * {@link #tailSet(Object)} to forward to this implementation. */
Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Sun Dec 22 03:38:46 GMT 2024 - 8.8K bytes - Click Count (0) -
guava/src/com/google/common/collect/ForwardingSortedSet.java
return delegate().subSet(fromElement, toElement); } @Override public SortedSet<E> tailSet(@ParametricNullness E fromElement) { return delegate().tailSet(fromElement); } /** * A sensible definition of {@link #contains} in terms of the {@code first()} method of {@link * #tailSet}. If you override {@link #tailSet}, you may wish to override {@link #contains} to * forward to this implementation. *
Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Wed Feb 12 16:28:01 GMT 2025 - 5.7K bytes - Click Count (0) -
android/guava/src/com/google/common/collect/ForwardingSortedSet.java
return delegate().subSet(fromElement, toElement); } @Override public SortedSet<E> tailSet(@ParametricNullness E fromElement) { return delegate().tailSet(fromElement); } /** * A sensible definition of {@link #contains} in terms of the {@code first()} method of {@link * #tailSet}. If you override {@link #tailSet}, you may wish to override {@link #contains} to * forward to this implementation. *
Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Wed Feb 12 16:28:01 GMT 2025 - 5.7K bytes - Click Count (0) -
android/guava/src/com/google/common/collect/SortedMultisets.java
} @Override public SortedSet<E> headSet(@ParametricNullness E toElement) { return multiset().headMultiset(toElement, OPEN).elementSet(); } @Override public SortedSet<E> tailSet(@ParametricNullness E fromElement) { return multiset().tailMultiset(fromElement, CLOSED).elementSet(); } @Override @ParametricNullness public E first() {Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Thu Aug 07 16:05:33 GMT 2025 - 5.5K bytes - Click Count (0) -
android/guava/src/com/google/common/collect/ContiguousSet.java
} @Override public ContiguousSet<C> tailSet(C fromElement) { return tailSetImpl(checkNotNull(fromElement), true); } /** * @since 12.0 */ @GwtIncompatible // NavigableSet @Override public ContiguousSet<C> tailSet(C fromElement, boolean inclusive) { return tailSetImpl(checkNotNull(fromElement), inclusive); } /*
Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Thu Aug 07 16:05:33 GMT 2025 - 9.9K bytes - Click Count (0) -
guava-testlib/src/com/google/common/collect/testing/SafeTreeSet.java
return subSet(fromElement, true, toElement, false); } @Override public SortedSet<E> tailSet(E fromElement) { return tailSet(fromElement, true); } @Override public NavigableSet<E> tailSet(E fromElement, boolean inclusive) { return new SafeTreeSet<>(delegate.tailSet(checkValid(fromElement), inclusive)); } @Override public Object[] toArray() {
Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Wed Mar 18 18:06:14 GMT 2026 - 5.7K bytes - Click Count (0) -
android/guava-testlib/src/com/google/common/collect/testing/SafeTreeSet.java
return subSet(fromElement, true, toElement, false); } @Override public SortedSet<E> tailSet(E fromElement) { return tailSet(fromElement, true); } @Override public NavigableSet<E> tailSet(E fromElement, boolean inclusive) { return new SafeTreeSet<>(delegate.tailSet(checkValid(fromElement), inclusive)); } @Override public Object[] toArray() {
Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Wed Mar 18 18:06:14 GMT 2026 - 5.7K bytes - Click Count (0) -
guava-gwt/src-super/com/google/common/collect/super/com/google/common/collect/ImmutableSortedSet.java
return emptySet(comparator()); } return tailSet(fromElement, fromInclusive).headSet(toElement, toInclusive); } @Override public ImmutableSortedSet<E> tailSet(E fromElement) { checkNotNull(fromElement); try { return unsafeDelegateSortedSet(sortedDelegate.tailSet(fromElement), true); } catch (IllegalArgumentException e) { return emptySet(comparator());
Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Wed Aug 06 18:32:41 GMT 2025 - 15.5K bytes - Click Count (0) -
guava/src/com/google/common/collect/SortedMultisets.java
} @Override public SortedSet<E> headSet(@ParametricNullness E toElement) { return multiset().headMultiset(toElement, OPEN).elementSet(); } @Override public SortedSet<E> tailSet(@ParametricNullness E fromElement) { return multiset().tailMultiset(fromElement, CLOSED).elementSet(); } @Override @ParametricNullness public E first() {Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Thu Aug 07 16:05:33 GMT 2025 - 5.5K bytes - Click Count (0)