Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for SortedKeySet (0.04 sec)

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

        }
    
        @Nullable SortedSet<K> sortedKeySet;
    
        // returns a SortedSet, even though returning a Set would be sufficient to
        // satisfy the SortedMap.keySet() interface
        @Override
        public SortedSet<K> keySet() {
          SortedSet<K> result = sortedKeySet;
          return (result == null) ? sortedKeySet = createKeySet() : result;
        }
    
        @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/StandardRowSortedTable.java

        @Override
        public SortedSet<R> keySet() {
          return (SortedSet<R>) super.keySet();
        }
    
        @Override
        SortedSet<R> createKeySet() {
          return new Maps.SortedKeySet<>(this);
        }
    
        @Override
        public @Nullable Comparator<? super R> comparator() {
          return sortedBackingMap().comparator();
        }
    
        @Override
        public R firstKey() {
    Registered: Fri Dec 26 12:43:10 UTC 2025
    - Last Modified: Fri Jul 18 15:05:43 UTC 2025
    - 4.4K bytes
    - Viewed (0)
  3. guava/src/com/google/common/collect/StandardRowSortedTable.java

        @Override
        public SortedSet<R> keySet() {
          return (SortedSet<R>) super.keySet();
        }
    
        @Override
        SortedSet<R> createKeySet() {
          return new Maps.SortedKeySet<>(this);
        }
    
        @Override
        public @Nullable Comparator<? super R> comparator() {
          return sortedBackingMap().comparator();
        }
    
        @Override
        public R firstKey() {
    Registered: Fri Dec 26 12:43:10 UTC 2025
    - Last Modified: Fri Jul 18 15:05:43 UTC 2025
    - 4.4K bytes
    - Viewed (0)
  4. android/guava/src/com/google/common/collect/ForwardingSortedMap.java

       * ForwardingSortedMap#keySet} to forward to this implementation or a subclass thereof.
       *
       * @since 15.0
       */
      protected class StandardKeySet extends Maps.SortedKeySet<K, V> {
        /** Constructor for use by subclasses. */
        public StandardKeySet() {
          super(ForwardingSortedMap.this);
        }
      }
    
    Registered: Fri Dec 26 12:43:10 UTC 2025
    - Last Modified: Wed Feb 12 16:28:01 UTC 2025
    - 5.7K bytes
    - Viewed (0)
  5. guava/src/com/google/common/collect/Maps.java

          return new SortedKeySet<>(map().subMap(fromElement, toElement));
        }
    
        @Override
        public SortedSet<K> headSet(@ParametricNullness K toElement) {
          return new SortedKeySet<>(map().headMap(toElement));
        }
    
        @Override
        public SortedSet<K> tailSet(@ParametricNullness K fromElement) {
          return new SortedKeySet<>(map().tailMap(fromElement));
        }
    
    Registered: Fri Dec 26 12:43:10 UTC 2025
    - Last Modified: Mon Nov 17 22:50:48 UTC 2025
    - 163.5K bytes
    - Viewed (0)
  6. android/guava/src/com/google/common/collect/Maps.java

          return new SortedKeySet<>(map().subMap(fromElement, toElement));
        }
    
        @Override
        public SortedSet<K> headSet(@ParametricNullness K toElement) {
          return new SortedKeySet<>(map().headMap(toElement));
        }
    
        @Override
        public SortedSet<K> tailSet(@ParametricNullness K fromElement) {
          return new SortedKeySet<>(map().tailMap(fromElement));
        }
    
    Registered: Fri Dec 26 12:43:10 UTC 2025
    - Last Modified: Tue Sep 23 17:50:58 UTC 2025
    - 157.6K bytes
    - Viewed (0)
Back to top