- Sort Score
- Result 10 results
- Languages All
Results 1 - 2 of 2 for toImmutableRangeSet (0.14 sec)
-
guava/src/com/google/common/collect/ImmutableRangeSet.java
* ranges will be merged. * * @since 23.1 */ public static <E extends Comparable<? super E>> Collector<Range<E>, ?, ImmutableRangeSet<E>> toImmutableRangeSet() { return CollectCollectors.toImmutableRangeSet(); } /** * Returns an empty immutable range set. * * <p><b>Performance note:</b> the instance returned is a singleton. */ @SuppressWarnings("unchecked")
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Wed Oct 30 16:15:19 UTC 2024 - 27K bytes - Viewed (0) -
android/guava/src/com/google/common/collect/CollectCollectors.java
return ret; } } @GwtIncompatible @SuppressWarnings({"rawtypes", "unchecked"}) static <E extends Comparable<? super E>> Collector<Range<E>, ?, ImmutableRangeSet<E>> toImmutableRangeSet() { return (Collector) TO_IMMUTABLE_RANGE_SET; } // Multisets static <T extends @Nullable Object, E> Collector<T, ?, ImmutableMultiset<E>> toImmutableMultiset(
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Sat Oct 19 00:05:46 UTC 2024 - 17.1K bytes - Viewed (0)