- Sort Score
- Result 10 results
- Languages All
Results 1 - 3 of 3 for ImmutableRangeMap (0.12 sec)
-
android/guava-tests/test/com/google/common/collect/ImmutableRangeMapTest.java
Range<Integer> rangeTwo = Range.openClosed(6, 7); ImmutableRangeMap.Builder<Integer, Integer> zis = ImmutableRangeMap.<Integer, Integer>builder().put(rangeOne, 1); ImmutableRangeMap.Builder<Integer, Integer> zat = ImmutableRangeMap.<Integer, Integer>builder().put(rangeTwo, 6); ImmutableRangeMap<Integer, Integer> rangeMap = zis.combine(zat).build();
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Tue May 13 18:46:00 UTC 2025 - 9.7K bytes - Viewed (0) -
cycle_suppress_list.txt
FIELD com.google.common.collect.ConcurrentHashMultiset.countMap FIELD com.google.common.collect.ImmutableMultiset.asList FIELD com.google.common.collect.ImmutableRangeMap.ranges FIELD com.google.common.collect.ImmutableRangeSet.ranges FIELD com.google.common.collect.ImmutableSet.asList FIELD com.google.common.collect.JdkBackedImmutableBiMap.inverse
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Jul 24 01:59:49 UTC 2025 - 3.2K bytes - Viewed (0) -
guava/src/com/google/common/collect/RangeMap.java
* * @author Louis Wasserman * @since 14.0 */ @SuppressWarnings("rawtypes") // https://github.com/google/guava/issues/989 @DoNotMock("Use ImmutableRangeMap or TreeRangeMap") @GwtIncompatible public interface RangeMap<K extends Comparable, V> { /* * TODO(cpovirk): These docs sometimes say "map" and sometimes say "range map." Pick one, or at
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Sun Dec 22 03:38:46 UTC 2024 - 7.6K bytes - Viewed (0)