Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 3 of 3 for SortedKeySet (0.06 seconds)

The search processing time has exceeded the limit. The displayed results may be partial.

  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
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Mon Nov 17 22:50:48 GMT 2025
    - 48.4K bytes
    - Click Count (0)
  2. 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));
        }
    
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Wed Apr 01 17:27:13 GMT 2026
    - 157.6K bytes
    - Click Count (0)
  3. 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));
        }
    
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Wed Apr 01 17:27:13 GMT 2026
    - 163.4K bytes
    - Click Count (0)
Back to Top