Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for WrappedNavigableSet (0.11 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 Sep 05 12:43:10 UTC 2025
    - Last Modified: Tue Aug 12 15:51:57 UTC 2025
    - 48.2K 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 Sep 05 12:43:10 UTC 2025
    - Last Modified: Sat Aug 09 01:14:59 UTC 2025
    - 86.6K bytes
    - Viewed (0)
  3. 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 Sep 05 12:43:10 UTC 2025
    - Last Modified: Sat Aug 09 01:14:59 UTC 2025
    - 86.9K bytes
    - Viewed (0)
Back to top