(package private) static <K,V,M extends Map<K,V>> M |
Maps.distinctBy(M map,
Maps.OfEntries<K,V,M> ofEntries,
java.util.Comparator<? super Tuple2<K,V>> comparator) |
|
(package private) static <K,V,U,M extends Map<K,V>> M |
Maps.distinctBy(M map,
Maps.OfEntries<K,V,M> ofEntries,
java.util.function.Function<? super Tuple2<K,V>,? extends U> keyExtractor) |
|
(package private) static <K,V,M extends Map<K,V>> M |
Maps.drop(M map,
Maps.OfEntries<K,V,M> ofEntries,
java.util.function.Supplier<M> emptySupplier,
int n) |
|
(package private) static <K,V,M extends Map<K,V>> M |
Maps.dropRight(M map,
Maps.OfEntries<K,V,M> ofEntries,
java.util.function.Supplier<M> emptySupplier,
int n) |
|
(package private) static <K,V,M extends Map<K,V>> M |
Maps.dropUntil(M map,
Maps.OfEntries<K,V,M> ofEntries,
java.util.function.Predicate<? super Tuple2<K,V>> predicate) |
|
(package private) static <K,V,M extends Map<K,V>> M |
Maps.dropWhile(M map,
Maps.OfEntries<K,V,M> ofEntries,
java.util.function.Predicate<? super Tuple2<K,V>> predicate) |
|
(package private) static <K,V,M extends Map<K,V>> M |
Maps.filter(M map,
Maps.OfEntries<K,V,M> ofEntries,
java.util.function.BiPredicate<? super K,? super V> predicate) |
|
(package private) static <K,V,M extends Map<K,V>> M |
Maps.filter(M map,
Maps.OfEntries<K,V,M> ofEntries,
java.util.function.Predicate<? super Tuple2<K,V>> predicate) |
|
(package private) static <K,V,M extends Map<K,V>> M |
Maps.filterKeys(M map,
Maps.OfEntries<K,V,M> ofEntries,
java.util.function.Predicate<? super K> predicate) |
|
(package private) static <K,V,M extends Map<K,V>> M |
Maps.filterValues(M map,
Maps.OfEntries<K,V,M> ofEntries,
java.util.function.Predicate<? super V> predicate) |
|
(package private) static <K,V,C,M extends Map<K,V>> Map<C,M> |
Maps.groupBy(M map,
Maps.OfEntries<K,V,M> ofEntries,
java.util.function.Function<? super Tuple2<K,V>,? extends C> classifier) |
|
(package private) static <K,V,M extends Map<K,V>> Iterator<M> |
Maps.grouped(M map,
Maps.OfEntries<K,V,M> ofEntries,
int size) |
|
(package private) static <K,V,M extends Map<K,V>> M |
Maps.merge(M map,
Maps.OfEntries<K,V,M> ofEntries,
Map<? extends K,? extends V> that) |
|
(package private) static <K,V,U extends V,M extends Map<K,V>> M |
Maps.merge(M map,
Maps.OfEntries<K,V,M> ofEntries,
Map<? extends K,U> that,
java.util.function.BiFunction<? super V,? super U,? extends V> collisionResolution) |
|
(package private) static <K,V,M extends Map<K,V>> Tuple2<M,M> |
Maps.partition(M map,
Maps.OfEntries<K,V,M> ofEntries,
java.util.function.Predicate<? super Tuple2<K,V>> predicate) |
|
(package private) static <K,V,M extends Map<K,V>> M |
Maps.reject(M map,
Maps.OfEntries<K,V,M> ofEntries,
java.util.function.BiPredicate<? super K,? super V> predicate) |
|
(package private) static <K,V,M extends Map<K,V>> M |
Maps.reject(M map,
Maps.OfEntries<K,V,M> ofEntries,
java.util.function.Predicate<? super Tuple2<K,V>> predicate) |
|
(package private) static <K,V,M extends Map<K,V>> M |
Maps.rejectKeys(M map,
Maps.OfEntries<K,V,M> ofEntries,
java.util.function.Predicate<? super K> predicate) |
|
(package private) static <K,V,M extends Map<K,V>> M |
Maps.rejectValues(M map,
Maps.OfEntries<K,V,M> ofEntries,
java.util.function.Predicate<? super V> predicate) |
|
(package private) static <K,V,M extends Map<K,V>> Iterator<M> |
Maps.slideBy(M map,
Maps.OfEntries<K,V,M> ofEntries,
java.util.function.Function<? super Tuple2<K,V>,?> classifier) |
|
(package private) static <K,V,M extends Map<K,V>> Iterator<M> |
Maps.sliding(M map,
Maps.OfEntries<K,V,M> ofEntries,
int size) |
|
(package private) static <K,V,M extends Map<K,V>> Iterator<M> |
Maps.sliding(M map,
Maps.OfEntries<K,V,M> ofEntries,
int size,
int step) |
|
(package private) static <K,V,M extends Map<K,V>> Tuple2<M,M> |
Maps.span(M map,
Maps.OfEntries<K,V,M> ofEntries,
java.util.function.Predicate<? super Tuple2<K,V>> predicate) |
|
(package private) static <K,V,M extends Map<K,V>> M |
Maps.take(M map,
Maps.OfEntries<K,V,M> ofEntries,
int n) |
|
(package private) static <K,V,M extends Map<K,V>> M |
Maps.takeRight(M map,
Maps.OfEntries<K,V,M> ofEntries,
int n) |
|
(package private) static <K,V,M extends Map<K,V>> M |
Maps.takeUntil(M map,
Maps.OfEntries<K,V,M> ofEntries,
java.util.function.Predicate<? super Tuple2<K,V>> predicate) |
|
(package private) static <K,V,M extends Map<K,V>> M |
Maps.takeWhile(M map,
Maps.OfEntries<K,V,M> ofEntries,
java.util.function.Predicate<? super Tuple2<K,V>> predicate) |
|