Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for SortedKeySet (0.09 sec)

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

          checkArgument(
              lowerBound == null || upperBound == null || compare(lowerBound, upperBound) <= 0);
        }
    
        @Override
        public SortedSet<C> keySet() {
          return new Maps.SortedKeySet<>(this);
        }
    
        @Override
        public Comparator<? super C> comparator() {
          return columnComparator();
        }
    
        int compare(Object a, Object b) {
          // pretend we can compare anything
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Wed Oct 30 16:15:19 UTC 2024
    - 11.5K bytes
    - Viewed (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));
        }
    
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Sat Oct 19 00:05:46 UTC 2024
    - 161.6K bytes
    - Viewed (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));
        }
    
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Sat Oct 19 00:05:46 UTC 2024
    - 167.4K bytes
    - Viewed (0)
Back to top