Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 1 of 1 for emptySubRangeMap (0.1 seconds)

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

  1. android/guava/src/com/google/common/collect/TreeRangeMap.java

        if (subRange.equals(Range.all())) {
          return this;
        } else {
          return new SubRangeMap(subRange);
        }
      }
    
      @SuppressWarnings("unchecked")
      private RangeMap<K, V> emptySubRangeMap() {
        return (RangeMap<K, V>) (RangeMap<?, ?>) EMPTY_SUB_RANGE_MAP;
      }
    
      @SuppressWarnings("ConstantCaseForConstants") // This RangeMap is immutable.
    Created: Fri Dec 26 12:43:10 GMT 2025
    - Last Modified: Tue Sep 23 17:50:58 GMT 2025
    - 22.7K bytes
    - Click Count (0)
Back to Top