Uses of Interface
org.eclipse.collections.api.multimap.bag.ImmutableBagMultimap
-
Packages that use ImmutableBagMultimap Package Description org.eclipse.collections.api.bag This package contains interfaces for Bag API.org.eclipse.collections.api.map This package contains interfaces for map API which enhance the performance and functionality ofMap
org.eclipse.collections.api.map.primitive This package contains API for primitive to primitive maps, primitive to object maps and object to primitive maps with mutable and immutable variants.org.eclipse.collections.api.multimap.bag This package contains interfaces forBagMultimap
.org.eclipse.collections.api.multimap.list This package contains interfaces forListMultimap
.org.eclipse.collections.api.multimap.set This package contains interfaces forSetMultimap
.org.eclipse.collections.api.multimap.sortedbag This package contains interfaces forSortedBagMultimap
.org.eclipse.collections.api.multimap.sortedset This package contains interfaces forSortedSetMultimap
.org.eclipse.collections.impl.bag.immutable This package contains implementations of theImmutableBag
interface.org.eclipse.collections.impl.collector org.eclipse.collections.impl.factory This package contains static utilities for creating mutable and immutable collection factories.org.eclipse.collections.impl.map.immutable This package contains implementations of theImmutableMap
interface.org.eclipse.collections.impl.map.immutable.primitive This package contains implementations of the immutable primitive-primitive, primitive-object and object-primitive map interfaces.org.eclipse.collections.impl.multimap.bag This package contains implementations of theBagMultimap
interface.org.eclipse.collections.impl.multimap.bag.sorted.immutable org.eclipse.collections.impl.multimap.list This package contains implementations of theListMultimap
interface.org.eclipse.collections.impl.multimap.set This package contains implementations of theSetMultimap
interface.org.eclipse.collections.impl.multimap.set.sorted This package contains implementations of theSortedSetMultimap
interface. -
-
Uses of ImmutableBagMultimap in org.eclipse.collections.api.bag
Methods in org.eclipse.collections.api.bag that return ImmutableBagMultimap Modifier and Type Method Description <V> ImmutableBagMultimap<V,T>
ImmutableBag. groupBy(Function<? super T,? extends V> function)
<V> ImmutableBagMultimap<V,T>
ImmutableBag. groupByEach(Function<? super T,? extends java.lang.Iterable<V>> function)
-
Uses of ImmutableBagMultimap in org.eclipse.collections.api.map
Methods in org.eclipse.collections.api.map that return ImmutableBagMultimap Modifier and Type Method Description <VV> ImmutableBagMultimap<VV,V>
ImmutableMap. groupBy(Function<? super V,? extends VV> function)
<VV> ImmutableBagMultimap<VV,V>
ImmutableMap. groupByEach(Function<? super V,? extends java.lang.Iterable<VV>> function)
-
Uses of ImmutableBagMultimap in org.eclipse.collections.api.map.primitive
Methods in org.eclipse.collections.api.map.primitive that return ImmutableBagMultimap Modifier and Type Method Description <VV> ImmutableBagMultimap<VV,V>
ImmutablePrimitiveObjectMap. groupBy(Function<? super V,? extends VV> function)
<VV> ImmutableBagMultimap<VV,V>
ImmutablePrimitiveObjectMap. groupByEach(Function<? super V,? extends java.lang.Iterable<VV>> function)
-
Uses of ImmutableBagMultimap in org.eclipse.collections.api.multimap.bag
Methods in org.eclipse.collections.api.multimap.bag that return ImmutableBagMultimap Modifier and Type Method Description <K2,V2>
ImmutableBagMultimap<K2,V2>ImmutableBagMultimap. collectKeyMultiValues(Function<? super K,? extends K2> keyFunction, Function<? super V,? extends V2> valueFunction)
<K2,V2>
ImmutableBagMultimap<K2,V2>ImmutableBagMultimap. collectKeysValues(Function2<? super K,? super V,Pair<K2,V2>> function)
<V2> ImmutableBagMultimap<K,V2>
ImmutableBagMultimap. collectValues(Function<? super V,? extends V2> function)
ImmutableBagMultimap<V,K>
ImmutableBagMultimap. flip()
ImmutableBagMultimap<K,V>
ImmutableBagMultimap. newEmpty()
ImmutableBagMultimap<K,V>
ImmutableBagMultimap. newWith(K key, V value)
ImmutableBagMultimap<K,V>
ImmutableBagMultimap. newWithAll(K key, java.lang.Iterable<? extends V> values)
ImmutableBagMultimap<K,V>
ImmutableBagMultimap. newWithout(java.lang.Object key, java.lang.Object value)
ImmutableBagMultimap<K,V>
ImmutableBagMultimap. newWithoutAll(java.lang.Object key)
ImmutableBagMultimap<K,V>
ImmutableBagMultimap. rejectKeysMultiValues(Predicate2<? super K,? super RichIterable<V>> predicate)
ImmutableBagMultimap<K,V>
ImmutableBagMultimap. rejectKeysValues(Predicate2<? super K,? super V> predicate)
ImmutableBagMultimap<K,V>
ImmutableBagMultimap. selectKeysMultiValues(Predicate2<? super K,? super RichIterable<V>> predicate)
ImmutableBagMultimap<K,V>
ImmutableBagMultimap. selectKeysValues(Predicate2<? super K,? super V> predicate)
ImmutableBagMultimap<K,V>
UnsortedBagMultimap. toImmutable()
-
Uses of ImmutableBagMultimap in org.eclipse.collections.api.multimap.list
Methods in org.eclipse.collections.api.multimap.list that return ImmutableBagMultimap Modifier and Type Method Description <K2,V2>
ImmutableBagMultimap<K2,V2>ImmutableListMultimap. collectKeyMultiValues(Function<? super K,? extends K2> keyFunction, Function<? super V,? extends V2> valueFunction)
<K2,V2>
ImmutableBagMultimap<K2,V2>ImmutableListMultimap. collectKeysValues(Function2<? super K,? super V,Pair<K2,V2>> function)
ImmutableBagMultimap<V,K>
ImmutableListMultimap. flip()
-
Uses of ImmutableBagMultimap in org.eclipse.collections.api.multimap.set
Methods in org.eclipse.collections.api.multimap.set that return ImmutableBagMultimap Modifier and Type Method Description <K2,V2>
ImmutableBagMultimap<K2,V2>ImmutableSetMultimap. collectKeyMultiValues(Function<? super K,? extends K2> keyFunction, Function<? super V,? extends V2> valueFunction)
<K2,V2>
ImmutableBagMultimap<K2,V2>ImmutableSetMultimap. collectKeysValues(Function2<? super K,? super V,Pair<K2,V2>> function)
<V2> ImmutableBagMultimap<K,V2>
ImmutableSetMultimap. collectValues(Function<? super V,? extends V2> function)
-
Uses of ImmutableBagMultimap in org.eclipse.collections.api.multimap.sortedbag
Methods in org.eclipse.collections.api.multimap.sortedbag that return ImmutableBagMultimap Modifier and Type Method Description <K2,V2>
ImmutableBagMultimap<K2,V2>ImmutableSortedBagMultimap. collectKeyMultiValues(Function<? super K,? extends K2> keyFunction, Function<? super V,? extends V2> valueFunction)
<K2,V2>
ImmutableBagMultimap<K2,V2>ImmutableSortedBagMultimap. collectKeysValues(Function2<? super K,? super V,Pair<K2,V2>> function)
ImmutableBagMultimap<V,K>
ImmutableSortedBagMultimap. flip()
-
Uses of ImmutableBagMultimap in org.eclipse.collections.api.multimap.sortedset
Methods in org.eclipse.collections.api.multimap.sortedset that return ImmutableBagMultimap Modifier and Type Method Description <K2,V2>
ImmutableBagMultimap<K2,V2>ImmutableSortedSetMultimap. collectKeyMultiValues(Function<? super K,? extends K2> keyFunction, Function<? super V,? extends V2> valueFunction)
<K2,V2>
ImmutableBagMultimap<K2,V2>ImmutableSortedSetMultimap. collectKeysValues(Function2<? super K,? super V,Pair<K2,V2>> function)
-
Uses of ImmutableBagMultimap in org.eclipse.collections.impl.bag.immutable
Methods in org.eclipse.collections.impl.bag.immutable that return ImmutableBagMultimap Modifier and Type Method Description <V> ImmutableBagMultimap<V,T>
ImmutableArrayBag. groupBy(Function<? super T,? extends V> function)
<V> ImmutableBagMultimap<V,T>
ImmutableEmptyBag. groupBy(Function<? super T,? extends V> function)
<V> ImmutableBagMultimap<V,T>
ImmutableHashBag. groupBy(Function<? super T,? extends V> function)
<V> ImmutableBagMultimap<V,T>
ImmutableSingletonBag. groupBy(Function<? super T,? extends V> function)
<V> ImmutableBagMultimap<V,T>
ImmutableArrayBag. groupByEach(Function<? super T,? extends java.lang.Iterable<V>> function)
<V> ImmutableBagMultimap<V,T>
ImmutableEmptyBag. groupByEach(Function<? super T,? extends java.lang.Iterable<V>> function)
<V> ImmutableBagMultimap<V,T>
ImmutableHashBag. groupByEach(Function<? super T,? extends java.lang.Iterable<V>> function)
<V> ImmutableBagMultimap<V,T>
ImmutableSingletonBag. groupByEach(Function<? super T,? extends java.lang.Iterable<V>> function)
-
Uses of ImmutableBagMultimap in org.eclipse.collections.impl.collector
Methods in org.eclipse.collections.impl.collector that return types with arguments of type ImmutableBagMultimap Modifier and Type Method Description static <T,K>
java.util.stream.Collector<T,?,ImmutableBagMultimap<K,T>>Collectors2. toImmutableBagMultimap(Function<? super T,? extends K> groupBy)
Returns the elements as an ImmutableBagMultimap grouping each element using the specified groupBy Function.static <T,K,V>
java.util.stream.Collector<T,?,ImmutableBagMultimap<K,V>>Collectors2. toImmutableBagMultimap(Function<? super T,? extends K> groupBy, Function<? super T,? extends V> valueFunction)
Returns the elements as an ImmutableBagMultimap grouping each element using the specified groupBy Function and converting each element to the value returned by applying the specified Function valueFunction. -
Uses of ImmutableBagMultimap in org.eclipse.collections.impl.factory
Fields in org.eclipse.collections.impl.factory declared as ImmutableBagMultimap Modifier and Type Field Description private static ImmutableBagMultimap<java.lang.Object,java.lang.Object>
Multimaps.ImmutableMultimaps.ImmutableBagMultimapFactory. EMPTY
Methods in org.eclipse.collections.impl.factory that return ImmutableBagMultimap Modifier and Type Method Description <K,V>
ImmutableBagMultimap<K,V>Multimaps.ImmutableMultimaps.ImmutableBagMultimapFactory. empty()
<K,V>
ImmutableBagMultimap<K,V>Multimaps.ImmutableMultimaps.ImmutableBagMultimapFactory. of()
<K,V>
ImmutableBagMultimap<K,V>Multimaps.ImmutableMultimaps.ImmutableBagMultimapFactory. of(K key, V value)
<K,V>
ImmutableBagMultimap<K,V>Multimaps.ImmutableMultimaps.ImmutableBagMultimapFactory. of(K key1, V value1, K key2, V value2)
<K,V>
ImmutableBagMultimap<K,V>Multimaps.ImmutableMultimaps.ImmutableBagMultimapFactory. of(K key1, V value1, K key2, V value2, K key3, V value3)
<K,V>
ImmutableBagMultimap<K,V>Multimaps.ImmutableMultimaps.ImmutableBagMultimapFactory. with()
<K,V>
ImmutableBagMultimap<K,V>Multimaps.ImmutableMultimaps.ImmutableBagMultimapFactory. with(K key, V value)
<K,V>
ImmutableBagMultimap<K,V>Multimaps.ImmutableMultimaps.ImmutableBagMultimapFactory. with(K key1, V value1, K key2, V value2)
<K,V>
ImmutableBagMultimap<K,V>Multimaps.ImmutableMultimaps.ImmutableBagMultimapFactory. with(K key1, V value1, K key2, V value2, K key3, V value3)
-
Uses of ImmutableBagMultimap in org.eclipse.collections.impl.map.immutable
Methods in org.eclipse.collections.impl.map.immutable that return ImmutableBagMultimap Modifier and Type Method Description <VV> ImmutableBagMultimap<VV,V>
AbstractImmutableMap. groupBy(Function<? super V,? extends VV> function)
<VV> ImmutableBagMultimap<VV,V>
AbstractImmutableMap. groupByEach(Function<? super V,? extends java.lang.Iterable<VV>> function)
-
Uses of ImmutableBagMultimap in org.eclipse.collections.impl.map.immutable.primitive
Methods in org.eclipse.collections.impl.map.immutable.primitive that return ImmutableBagMultimap Modifier and Type Method Description <VV> ImmutableBagMultimap<VV,V>
ImmutableByteObjectEmptyMap. groupBy(Function<? super V,? extends VV> function)
<VV> ImmutableBagMultimap<VV,V>
ImmutableByteObjectHashMap. groupBy(Function<? super V,? extends VV> function)
<VV> ImmutableBagMultimap<VV,V>
ImmutableByteObjectSingletonMap. groupBy(Function<? super V,? extends VV> function)
<VV> ImmutableBagMultimap<VV,V>
ImmutableCharObjectEmptyMap. groupBy(Function<? super V,? extends VV> function)
<VV> ImmutableBagMultimap<VV,V>
ImmutableCharObjectHashMap. groupBy(Function<? super V,? extends VV> function)
<VV> ImmutableBagMultimap<VV,V>
ImmutableCharObjectSingletonMap. groupBy(Function<? super V,? extends VV> function)
<VV> ImmutableBagMultimap<VV,V>
ImmutableDoubleObjectEmptyMap. groupBy(Function<? super V,? extends VV> function)
<VV> ImmutableBagMultimap<VV,V>
ImmutableDoubleObjectHashMap. groupBy(Function<? super V,? extends VV> function)
<VV> ImmutableBagMultimap<VV,V>
ImmutableDoubleObjectSingletonMap. groupBy(Function<? super V,? extends VV> function)
<VV> ImmutableBagMultimap<VV,V>
ImmutableFloatObjectEmptyMap. groupBy(Function<? super V,? extends VV> function)
<VV> ImmutableBagMultimap<VV,V>
ImmutableFloatObjectHashMap. groupBy(Function<? super V,? extends VV> function)
<VV> ImmutableBagMultimap<VV,V>
ImmutableFloatObjectSingletonMap. groupBy(Function<? super V,? extends VV> function)
<VV> ImmutableBagMultimap<VV,V>
ImmutableIntObjectEmptyMap. groupBy(Function<? super V,? extends VV> function)
<VV> ImmutableBagMultimap<VV,V>
ImmutableIntObjectHashMap. groupBy(Function<? super V,? extends VV> function)
<VV> ImmutableBagMultimap<VV,V>
ImmutableIntObjectSingletonMap. groupBy(Function<? super V,? extends VV> function)
<VV> ImmutableBagMultimap<VV,V>
ImmutableLongObjectEmptyMap. groupBy(Function<? super V,? extends VV> function)
<VV> ImmutableBagMultimap<VV,V>
ImmutableLongObjectHashMap. groupBy(Function<? super V,? extends VV> function)
<VV> ImmutableBagMultimap<VV,V>
ImmutableLongObjectSingletonMap. groupBy(Function<? super V,? extends VV> function)
<VV> ImmutableBagMultimap<VV,V>
ImmutableShortObjectEmptyMap. groupBy(Function<? super V,? extends VV> function)
<VV> ImmutableBagMultimap<VV,V>
ImmutableShortObjectHashMap. groupBy(Function<? super V,? extends VV> function)
<VV> ImmutableBagMultimap<VV,V>
ImmutableShortObjectSingletonMap. groupBy(Function<? super V,? extends VV> function)
<VV> ImmutableBagMultimap<VV,V>
ImmutableByteObjectEmptyMap. groupByEach(Function<? super V,? extends java.lang.Iterable<VV>> function)
<VV> ImmutableBagMultimap<VV,V>
ImmutableByteObjectHashMap. groupByEach(Function<? super V,? extends java.lang.Iterable<VV>> function)
<VV> ImmutableBagMultimap<VV,V>
ImmutableByteObjectSingletonMap. groupByEach(Function<? super V,? extends java.lang.Iterable<VV>> function)
<VV> ImmutableBagMultimap<VV,V>
ImmutableCharObjectEmptyMap. groupByEach(Function<? super V,? extends java.lang.Iterable<VV>> function)
<VV> ImmutableBagMultimap<VV,V>
ImmutableCharObjectHashMap. groupByEach(Function<? super V,? extends java.lang.Iterable<VV>> function)
<VV> ImmutableBagMultimap<VV,V>
ImmutableCharObjectSingletonMap. groupByEach(Function<? super V,? extends java.lang.Iterable<VV>> function)
<VV> ImmutableBagMultimap<VV,V>
ImmutableDoubleObjectEmptyMap. groupByEach(Function<? super V,? extends java.lang.Iterable<VV>> function)
<VV> ImmutableBagMultimap<VV,V>
ImmutableDoubleObjectHashMap. groupByEach(Function<? super V,? extends java.lang.Iterable<VV>> function)
<VV> ImmutableBagMultimap<VV,V>
ImmutableDoubleObjectSingletonMap. groupByEach(Function<? super V,? extends java.lang.Iterable<VV>> function)
<VV> ImmutableBagMultimap<VV,V>
ImmutableFloatObjectEmptyMap. groupByEach(Function<? super V,? extends java.lang.Iterable<VV>> function)
<VV> ImmutableBagMultimap<VV,V>
ImmutableFloatObjectHashMap. groupByEach(Function<? super V,? extends java.lang.Iterable<VV>> function)
<VV> ImmutableBagMultimap<VV,V>
ImmutableFloatObjectSingletonMap. groupByEach(Function<? super V,? extends java.lang.Iterable<VV>> function)
<VV> ImmutableBagMultimap<VV,V>
ImmutableIntObjectEmptyMap. groupByEach(Function<? super V,? extends java.lang.Iterable<VV>> function)
<VV> ImmutableBagMultimap<VV,V>
ImmutableIntObjectHashMap. groupByEach(Function<? super V,? extends java.lang.Iterable<VV>> function)
<VV> ImmutableBagMultimap<VV,V>
ImmutableIntObjectSingletonMap. groupByEach(Function<? super V,? extends java.lang.Iterable<VV>> function)
<VV> ImmutableBagMultimap<VV,V>
ImmutableLongObjectEmptyMap. groupByEach(Function<? super V,? extends java.lang.Iterable<VV>> function)
<VV> ImmutableBagMultimap<VV,V>
ImmutableLongObjectHashMap. groupByEach(Function<? super V,? extends java.lang.Iterable<VV>> function)
<VV> ImmutableBagMultimap<VV,V>
ImmutableLongObjectSingletonMap. groupByEach(Function<? super V,? extends java.lang.Iterable<VV>> function)
<VV> ImmutableBagMultimap<VV,V>
ImmutableShortObjectEmptyMap. groupByEach(Function<? super V,? extends java.lang.Iterable<VV>> function)
<VV> ImmutableBagMultimap<VV,V>
ImmutableShortObjectHashMap. groupByEach(Function<? super V,? extends java.lang.Iterable<VV>> function)
<VV> ImmutableBagMultimap<VV,V>
ImmutableShortObjectSingletonMap. groupByEach(Function<? super V,? extends java.lang.Iterable<VV>> function)
-
Uses of ImmutableBagMultimap in org.eclipse.collections.impl.multimap.bag
Classes in org.eclipse.collections.impl.multimap.bag that implement ImmutableBagMultimap Modifier and Type Class Description class
ImmutableBagMultimapImpl<K,V>
The default ImmutableBagMultimap implementation.Methods in org.eclipse.collections.impl.multimap.bag that return ImmutableBagMultimap Modifier and Type Method Description <K2,V2>
ImmutableBagMultimap<K2,V2>ImmutableBagMultimapImpl. collectKeyMultiValues(Function<? super K,? extends K2> keyFunction, Function<? super V,? extends V2> valueFunction)
<K2,V2>
ImmutableBagMultimap<K2,V2>ImmutableBagMultimapImpl. collectKeysValues(Function2<? super K,? super V,Pair<K2,V2>> function)
<V2> ImmutableBagMultimap<K,V2>
ImmutableBagMultimapImpl. collectValues(Function<? super V,? extends V2> function)
ImmutableBagMultimap<V,K>
ImmutableBagMultimapImpl. flip()
ImmutableBagMultimap<K,V>
ImmutableBagMultimapImpl. newEmpty()
ImmutableBagMultimap<K,V>
ImmutableBagMultimapImpl. newWith(K key, V value)
ImmutableBagMultimap<K,V>
ImmutableBagMultimapImpl. newWithAll(K key, java.lang.Iterable<? extends V> values)
ImmutableBagMultimap<K,V>
ImmutableBagMultimapImpl. newWithout(java.lang.Object key, java.lang.Object value)
ImmutableBagMultimap<K,V>
ImmutableBagMultimapImpl. newWithoutAll(java.lang.Object key)
ImmutableBagMultimap<K,V>
ImmutableBagMultimapImpl. rejectKeysMultiValues(Predicate2<? super K,? super RichIterable<V>> predicate)
ImmutableBagMultimap<K,V>
ImmutableBagMultimapImpl. rejectKeysValues(Predicate2<? super K,? super V> predicate)
ImmutableBagMultimap<K,V>
ImmutableBagMultimapImpl. selectKeysMultiValues(Predicate2<? super K,? super RichIterable<V>> predicate)
ImmutableBagMultimap<K,V>
ImmutableBagMultimapImpl. selectKeysValues(Predicate2<? super K,? super V> predicate)
ImmutableBagMultimap<K,V>
AbstractMutableBagMultimap. toImmutable()
ImmutableBagMultimap<K,V>
ImmutableBagMultimapImpl. toImmutable()
ImmutableBagMultimap<K,V>
SynchronizedBagMultimap. toImmutable()
ImmutableBagMultimap<K,V>
SynchronizedPutHashBagMultimap. toImmutable()
-
Uses of ImmutableBagMultimap in org.eclipse.collections.impl.multimap.bag.sorted.immutable
Methods in org.eclipse.collections.impl.multimap.bag.sorted.immutable that return ImmutableBagMultimap Modifier and Type Method Description <K2,V2>
ImmutableBagMultimap<K2,V2>ImmutableSortedBagMultimapImpl. collectKeyMultiValues(Function<? super K,? extends K2> keyFunction, Function<? super V,? extends V2> valueFunction)
<K2,V2>
ImmutableBagMultimap<K2,V2>ImmutableSortedBagMultimapImpl. collectKeysValues(Function2<? super K,? super V,Pair<K2,V2>> function)
ImmutableBagMultimap<V,K>
ImmutableSortedBagMultimapImpl. flip()
-
Uses of ImmutableBagMultimap in org.eclipse.collections.impl.multimap.list
Methods in org.eclipse.collections.impl.multimap.list that return ImmutableBagMultimap Modifier and Type Method Description <K2,V2>
ImmutableBagMultimap<K2,V2>ImmutableListMultimapImpl. collectKeyMultiValues(Function<? super K,? extends K2> keyFunction, Function<? super V,? extends V2> valueFunction)
<K2,V2>
ImmutableBagMultimap<K2,V2>ImmutableListMultimapImpl. collectKeysValues(Function2<? super K,? super V,Pair<K2,V2>> function)
ImmutableBagMultimap<V,K>
ImmutableListMultimapImpl. flip()
-
Uses of ImmutableBagMultimap in org.eclipse.collections.impl.multimap.set
Methods in org.eclipse.collections.impl.multimap.set that return ImmutableBagMultimap Modifier and Type Method Description <K2,V2>
ImmutableBagMultimap<K2,V2>ImmutableSetMultimapImpl. collectKeyMultiValues(Function<? super K,? extends K2> keyFunction, Function<? super V,? extends V2> valueFunction)
<K2,V2>
ImmutableBagMultimap<K2,V2>ImmutableSetMultimapImpl. collectKeysValues(Function2<? super K,? super V,Pair<K2,V2>> function)
<V2> ImmutableBagMultimap<K,V2>
ImmutableSetMultimapImpl. collectValues(Function<? super V,? extends V2> function)
-
Uses of ImmutableBagMultimap in org.eclipse.collections.impl.multimap.set.sorted
Methods in org.eclipse.collections.impl.multimap.set.sorted that return ImmutableBagMultimap Modifier and Type Method Description <K2,V2>
ImmutableBagMultimap<K2,V2>ImmutableSortedSetMultimapImpl. collectKeyMultiValues(Function<? super K,? extends K2> keyFunction, Function<? super V,? extends V2> valueFunction)
<K2,V2>
ImmutableBagMultimap<K2,V2>ImmutableSortedSetMultimapImpl. collectKeysValues(Function2<? super K,? super V,Pair<K2,V2>> function)
-