Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 2 of 2 for intersectRanges (0.08 seconds)

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

        return copyOf(copy);
      }
    
      /**
       * Returns a list containing the nonempty intersections of {@code range} with the ranges in this
       * range set.
       */
      private ImmutableList<Range<C>> intersectRanges(Range<C> range) {
        if (ranges.isEmpty() || range.isEmpty()) {
          return ImmutableList.of();
        } else if (range.encloses(span())) {
          return ranges;
        }
    
        int fromIndex;
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Tue Mar 17 16:45:58 GMT 2026
    - 27.4K bytes
    - Click Count (0)
  2. android/guava/src/com/google/common/collect/ImmutableRangeSet.java

        return copyOf(copy);
      }
    
      /**
       * Returns a list containing the nonempty intersections of {@code range} with the ranges in this
       * range set.
       */
      private ImmutableList<Range<C>> intersectRanges(Range<C> range) {
        if (ranges.isEmpty() || range.isEmpty()) {
          return ImmutableList.of();
        } else if (range.encloses(span())) {
          return ranges;
        }
    
        int fromIndex;
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Tue Mar 17 16:45:58 GMT 2026
    - 27.5K bytes
    - Click Count (0)
Back to Top