Uses of Interface
org.eclipse.collections.api.map.primitive.MutableObjectDoubleMap
Packages that use MutableObjectDoubleMap
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 MutableObjectDoubleMap in org.eclipse.collections.api.collection
Methods in org.eclipse.collections.api.collection that return MutableObjectDoubleMapModifier and TypeMethodDescription<V> MutableObjectDoubleMap<V>MutableCollection.sumByDouble(Function<? super T, ? extends V> groupBy, DoubleFunction<? super T> function) <V> MutableObjectDoubleMap<V>MutableCollection.sumByFloat(Function<? super T, ? extends V> groupBy, FloatFunction<? super T> function) -
Uses of MutableObjectDoubleMap in org.eclipse.collections.api.factory.map.primitive
Methods in org.eclipse.collections.api.factory.map.primitive that return MutableObjectDoubleMapModifier and TypeMethodDescription<K> MutableObjectDoubleMap<K>MutableObjectDoubleHashingStrategyMapFactory.empty(HashingStrategy<? super K> hashingStrategy) <K> MutableObjectDoubleMap<K>MutableObjectDoubleMapFactory.empty()<T,K> MutableObjectDoubleMap<K> MutableObjectDoubleMapFactory.from(Iterable<T> iterable, Function<? super T, ? extends K> keyFunction, DoubleFunction<? super T> valueFunction) Creates anMutableObjectDoubleMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.<K> MutableObjectDoubleMap<K>MutableObjectDoubleHashingStrategyMapFactory.of(HashingStrategy<? super K> hashingStrategy) Same as#empty().<K> MutableObjectDoubleMap<K>MutableObjectDoubleMapFactory.of()default <K> MutableObjectDoubleMap<K>MutableObjectDoubleMapFactory.of(K key, double value) default <K> MutableObjectDoubleMap<K>MutableObjectDoubleMapFactory.of(K key1, double value1, K key2, double value2) default <K> MutableObjectDoubleMap<K>MutableObjectDoubleMapFactory.of(K key1, double value1, K key2, double value2, K key3, double value3) default <K> MutableObjectDoubleMap<K>MutableObjectDoubleMapFactory.of(K key1, double value1, K key2, double value2, K key3, double value3, K key4, double value4) <K> MutableObjectDoubleMap<K>MutableObjectDoubleMapFactory.ofAll(ObjectDoubleMap<? extends K> map) <K> MutableObjectDoubleMap<K>MutableObjectDoubleMapFactory.ofInitialCapacity(int capacity) Same asMutableObjectDoubleMapFactory.empty(). but takes in an initial capacity<K> MutableObjectDoubleMap<K>MutableObjectDoubleHashingStrategyMapFactory.with(HashingStrategy<? super K> hashingStrategy) Same as#empty().<K> MutableObjectDoubleMap<K>MutableObjectDoubleMapFactory.with()default <K> MutableObjectDoubleMap<K>MutableObjectDoubleMapFactory.with(K key, double value) default <K> MutableObjectDoubleMap<K>MutableObjectDoubleMapFactory.with(K key1, double value1, K key2, double value2) default <K> MutableObjectDoubleMap<K>MutableObjectDoubleMapFactory.with(K key1, double value1, K key2, double value2, K key3, double value3) default <K> MutableObjectDoubleMap<K>MutableObjectDoubleMapFactory.with(K key1, double value1, K key2, double value2, K key3, double value3, K key4, double value4) <K> MutableObjectDoubleMap<K>MutableObjectDoubleMapFactory.withAll(ObjectDoubleMap<? extends K> map) <K> MutableObjectDoubleMap<K>MutableObjectDoubleHashingStrategyMapFactory.withInitialCapacity(HashingStrategy<? super K> hashingStrategy, int initialCapacity) Same as#empty()but takes in an initial capacity<K> MutableObjectDoubleMap<K>MutableObjectDoubleMapFactory.withInitialCapacity(int capacity) Same asMutableObjectDoubleMapFactory.empty(). but takes in an initial capacity -
Uses of MutableObjectDoubleMap in org.eclipse.collections.api.map
Methods in org.eclipse.collections.api.map that return MutableObjectDoubleMapModifier and TypeMethodDescription<V1> MutableObjectDoubleMap<V1>MutableMapIterable.sumByDouble(Function<? super V, ? extends V1> groupBy, DoubleFunction<? super V> function) <V1> MutableObjectDoubleMap<V1>MutableMapIterable.sumByFloat(Function<? super V, ? extends V1> groupBy, FloatFunction<? super V> function) -
Uses of MutableObjectDoubleMap in org.eclipse.collections.api.map.primitive
Methods in org.eclipse.collections.api.map.primitive that return MutableObjectDoubleMapModifier and TypeMethodDescriptionMutableObjectDoubleMap.asSynchronized()MutableObjectDoubleMap.asUnmodifiable()MutableDoubleObjectMap.flipUniqueValues()MutableObjectDoubleMap.reject(ObjectDoublePredicate<? super K> predicate) MutableObjectDoubleMap.select(ObjectDoublePredicate<? super K> predicate) <VV> MutableObjectDoubleMap<VV>MutablePrimitiveObjectMap.sumByDouble(Function<? super V, ? extends VV> groupBy, DoubleFunction<? super V> function) <VV> MutableObjectDoubleMap<VV>MutablePrimitiveObjectMap.sumByFloat(Function<? super V, ? extends VV> groupBy, FloatFunction<? super V> function) default MutableObjectDoubleMap<K>MutableObjectDoubleMap.tap(DoubleProcedure procedure) default MutableObjectDoubleMap<K>MutableObjectDoubleMap.withAllKeyValues(Iterable<ObjectDoublePair<K>> keyValuePairs) MutableObjectDoubleMap.withKeyValue(K key, double value) Associates a value with the specified key.MutableObjectDoubleMap.withoutAllKeys(Iterable<? extends K> keys) Removes the mappings associated with all the keys, if they exist, from this map.MutableObjectDoubleMap.withoutKey(K key) Removes the mapping associated with the key, if one exists, from this map. -
Uses of MutableObjectDoubleMap in org.eclipse.collections.api.stack
Methods in org.eclipse.collections.api.stack that return MutableObjectDoubleMapModifier and TypeMethodDescription<V> MutableObjectDoubleMap<V>MutableStack.sumByDouble(Function<? super T, ? extends V> groupBy, DoubleFunction<? super T> function) <V> MutableObjectDoubleMap<V>MutableStack.sumByFloat(Function<? super T, ? extends V> groupBy, FloatFunction<? super T> function)