- Sort Score
- Result 10 results
- Languages All
Results 1 - 4 of 4 for NavigableElementSet (0.07 sec)
-
android/guava/src/com/google/common/collect/SortedMultisets.java
} } /** A skeleton navigable implementation for {@link SortedMultiset#elementSet}. */ @GwtIncompatible // Navigable static class NavigableElementSet<E extends @Nullable Object> extends ElementSet<E> implements NavigableSet<E> { NavigableElementSet(SortedMultiset<E> multiset) { super(multiset); } @Override public @Nullable E lower(@ParametricNullness E e) {
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Aug 07 16:05:33 UTC 2025 - 5.5K bytes - Viewed (0) -
guava/src/com/google/common/collect/AbstractSortedMultiset.java
} @Override public NavigableSet<E> elementSet() { return (NavigableSet<E>) super.elementSet(); } @Override NavigableSet<E> createElementSet() { return new SortedMultisets.NavigableElementSet<>(this); } @Override public Comparator<? super E> comparator() { return comparator; } @Override public @Nullable Entry<E> firstEntry() {
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Sat Aug 09 01:14:59 UTC 2025 - 4.5K bytes - Viewed (0) -
android/guava/src/com/google/common/collect/ForwardingSortedMultiset.java
* implementation or a subclass thereof. * * @since 15.0 */ protected class StandardElementSet extends SortedMultisets.NavigableElementSet<E> { /** Constructor for use by subclasses. */ public StandardElementSet() { super(ForwardingSortedMultiset.this); } } @Override public Comparator<? super E> comparator() {
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Aug 07 16:05:33 UTC 2025 - 8.6K bytes - Viewed (0) -
guava/src/com/google/common/collect/ForwardingSortedMultiset.java
* implementation or a subclass thereof. * * @since 15.0 */ protected class StandardElementSet extends SortedMultisets.NavigableElementSet<E> { /** Constructor for use by subclasses. */ public StandardElementSet() { super(ForwardingSortedMultiset.this); } } @Override public Comparator<? super E> comparator() {
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Aug 07 16:05:33 UTC 2025 - 8.6K bytes - Viewed (0)