- Sort Score
- Result 10 results
- Languages All
Results 1 - 1 of 1 for intersectRanges (0.15 sec)
-
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;
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Mon Aug 11 19:31:30 UTC 2025 - 27.4K bytes - Viewed (0)