Uses of Interface
org.eclipse.collections.api.map.primitive.MutableObjectDoubleMap
-
Packages that use MutableObjectDoubleMap Package Description org.eclipse.collections.api.collection org.eclipse.collections.api.factory.map.primitive org.eclipse.collections.api.map This package contains interfaces for map API which enhance the performance and functionality ofMaporg.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.stack 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 MutableObjectDoubleMap Modifier and Type Method Description <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 MutableObjectDoubleMap Modifier and Type Method Description <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)<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) -
Uses of MutableObjectDoubleMap in org.eclipse.collections.api.map
Methods in org.eclipse.collections.api.map that return MutableObjectDoubleMap Modifier and Type Method Description <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 MutableObjectDoubleMap Modifier and Type Method Description MutableObjectDoubleMap<K>MutableObjectDoubleMap. asSynchronized()MutableObjectDoubleMap<K>MutableObjectDoubleMap. asUnmodifiable()MutableObjectDoubleMap<V>MutableDoubleObjectMap. flipUniqueValues()MutableObjectDoubleMap<K>MutableObjectDoubleMap. reject(ObjectDoublePredicate<? super K> predicate)MutableObjectDoubleMap<K>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<K>MutableObjectDoubleMap. withKeyValue(K key, double value)Associates a value with the specified key.MutableObjectDoubleMap<K>MutableObjectDoubleMap. withoutAllKeys(Iterable<? extends K> keys)Removes the mappings associated with all the keys, if they exist, from this map.MutableObjectDoubleMap<K>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 MutableObjectDoubleMap Modifier and Type Method Description <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)
-