Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for WrappedNavigableSet (0.06 sec)

  1. guava/src/com/google/common/collect/AbstractMapBasedMultimap.java

              getSortedSetDelegate().tailSet(fromElement),
              (getAncestor() == null) ? this : getAncestor());
        }
      }
    
      @WeakOuter
      final class WrappedNavigableSet extends WrappedSortedSet implements NavigableSet<V> {
        WrappedNavigableSet(
            @ParametricNullness K key, NavigableSet<V> delegate, @Nullable WrappedCollection ancestor) {
          super(key, delegate, ancestor);
        }
    
        @Override
    Registered: Fri Dec 26 12:43:10 UTC 2025
    - Last Modified: Mon Nov 17 22:50:48 UTC 2025
    - 48.4K bytes
    - Viewed (0)
  2. android/guava/src/com/google/common/collect/Multimaps.java

          if (collection instanceof List) {
            return wrapList(key, (List<V>) collection, null);
          } else if (collection instanceof NavigableSet) {
            return new WrappedNavigableSet(key, (NavigableSet<V>) collection, null);
          } else if (collection instanceof SortedSet) {
            return new WrappedSortedSet(key, (SortedSet<V>) collection, null);
          } else if (collection instanceof Set) {
    Registered: Fri Dec 26 12:43:10 UTC 2025
    - Last Modified: Mon Sep 22 18:35:44 UTC 2025
    - 86.5K bytes
    - Viewed (0)
Back to top