Uses of Interface
org.eclipse.collections.api.map.primitive.MutableObjectLongMap
Packages that use MutableObjectLongMap
Package
Description
This package contains interfaces for map API which enhance the performance and functionality of
MapThis package contains API for primitive to primitive maps, primitive to object maps and object to primitive maps with mutable and immutable variants.
This package contains interfaces for stack API.
-
Uses of MutableObjectLongMap in org.eclipse.collections.api.collection
Methods in org.eclipse.collections.api.collection that return MutableObjectLongMapModifier and TypeMethodDescription<V> MutableObjectLongMap<V>MutableCollection.sumByInt(Function<? super T, ? extends V> groupBy, IntFunction<? super T> function) <V> MutableObjectLongMap<V>MutableCollection.sumByLong(Function<? super T, ? extends V> groupBy, LongFunction<? super T> function) -
Uses of MutableObjectLongMap in org.eclipse.collections.api.factory.map.primitive
Methods in org.eclipse.collections.api.factory.map.primitive that return MutableObjectLongMapModifier and TypeMethodDescription<K> MutableObjectLongMap<K>MutableObjectLongHashingStrategyMapFactory.empty(HashingStrategy<? super K> hashingStrategy) <K> MutableObjectLongMap<K>MutableObjectLongMapFactory.empty()<T,K> MutableObjectLongMap<K> MutableObjectLongMapFactory.from(Iterable<T> iterable, Function<? super T, ? extends K> keyFunction, LongFunction<? super T> valueFunction) Creates anMutableObjectLongMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.<K> MutableObjectLongMap<K>MutableObjectLongHashingStrategyMapFactory.of(HashingStrategy<? super K> hashingStrategy) Same as#empty().<K> MutableObjectLongMap<K>MutableObjectLongMapFactory.of()Same asMutableObjectLongMapFactory.empty().default <K> MutableObjectLongMap<K>MutableObjectLongMapFactory.of(K key, long value) default <K> MutableObjectLongMap<K>MutableObjectLongMapFactory.of(K key1, long value1, K key2, long value2) default <K> MutableObjectLongMap<K>MutableObjectLongMapFactory.of(K key1, long value1, K key2, long value2, K key3, long value3) default <K> MutableObjectLongMap<K>MutableObjectLongMapFactory.of(K key1, long value1, K key2, long value2, K key3, long value3, K key4, long value4) <K> MutableObjectLongMap<K>MutableObjectLongMapFactory.ofAll(ObjectLongMap<? extends K> map) <K> MutableObjectLongMap<K>MutableObjectLongMapFactory.ofInitialCapacity(int capacity) Same asMutableObjectLongMapFactory.empty(). but takes in an initial capacity<K> MutableObjectLongMap<K>MutableObjectLongHashingStrategyMapFactory.with(HashingStrategy<? super K> hashingStrategy) Same as#empty().<K> MutableObjectLongMap<K>MutableObjectLongMapFactory.with()Same asMutableObjectLongMapFactory.empty().default <K> MutableObjectLongMap<K>MutableObjectLongMapFactory.with(K key, long value) default <K> MutableObjectLongMap<K>MutableObjectLongMapFactory.with(K key1, long value1, K key2, long value2) default <K> MutableObjectLongMap<K>MutableObjectLongMapFactory.with(K key1, long value1, K key2, long value2, K key3, long value3) default <K> MutableObjectLongMap<K>MutableObjectLongMapFactory.with(K key1, long value1, K key2, long value2, K key3, long value3, K key4, long value4) <K> MutableObjectLongMap<K>MutableObjectLongMapFactory.withAll(ObjectLongMap<? extends K> map) <K> MutableObjectLongMap<K>MutableObjectLongHashingStrategyMapFactory.withInitialCapacity(HashingStrategy<? super K> hashingStrategy, int initialCapacity) Same as#empty()but takes in an initial capacity<K> MutableObjectLongMap<K>MutableObjectLongMapFactory.withInitialCapacity(int capacity) Same asMutableObjectLongMapFactory.empty(). but takes in an initial capacity -
Uses of MutableObjectLongMap in org.eclipse.collections.api.map
Methods in org.eclipse.collections.api.map that return MutableObjectLongMapModifier and TypeMethodDescription<V1> MutableObjectLongMap<V1>MutableMapIterable.sumByInt(Function<? super V, ? extends V1> groupBy, IntFunction<? super V> function) <V1> MutableObjectLongMap<V1>MutableMapIterable.sumByLong(Function<? super V, ? extends V1> groupBy, LongFunction<? super V> function) -
Uses of MutableObjectLongMap in org.eclipse.collections.api.map.primitive
Methods in org.eclipse.collections.api.map.primitive that return MutableObjectLongMapModifier and TypeMethodDescriptionMutableObjectLongMap.asSynchronized()MutableObjectLongMap.asUnmodifiable()MutableLongObjectMap.flipUniqueValues()MutableObjectLongMap.reject(ObjectLongPredicate<? super K> predicate) MutableObjectLongMap.select(ObjectLongPredicate<? super K> predicate) <VV> MutableObjectLongMap<VV>MutablePrimitiveObjectMap.sumByInt(Function<? super V, ? extends VV> groupBy, IntFunction<? super V> function) <VV> MutableObjectLongMap<VV>MutablePrimitiveObjectMap.sumByLong(Function<? super V, ? extends VV> groupBy, LongFunction<? super V> function) default MutableObjectLongMap<K>MutableObjectLongMap.tap(LongProcedure procedure) default MutableObjectLongMap<K>MutableObjectLongMap.withAllKeyValues(Iterable<ObjectLongPair<K>> keyValuePairs) MutableObjectLongMap.withKeyValue(K key, long value) Associates a value with the specified key.MutableObjectLongMap.withoutAllKeys(Iterable<? extends K> keys) Removes the mappings associated with all the keys, if they exist, from this map.MutableObjectLongMap.withoutKey(K key) Removes the mapping associated with the key, if one exists, from this map. -
Uses of MutableObjectLongMap in org.eclipse.collections.api.stack
Methods in org.eclipse.collections.api.stack that return MutableObjectLongMapModifier and TypeMethodDescription<V> MutableObjectLongMap<V>MutableStack.sumByInt(Function<? super T, ? extends V> groupBy, IntFunction<? super T> function) <V> MutableObjectLongMap<V>MutableStack.sumByLong(Function<? super T, ? extends V> groupBy, LongFunction<? super T> function)