Uses of Interface
org.eclipse.collections.api.map.primitive.MutableIntDoubleMap
Packages that use MutableIntDoubleMap
Package
Description
This 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 implementations of the immutable primitive-primitive, primitive-object and object-primitive map interfaces.
This package contains implementations of the mutable primitive-primitive, primitive-object and object-primitive map interfaces.
-
Uses of MutableIntDoubleMap in org.eclipse.collections.api.factory.map.primitive
Methods in org.eclipse.collections.api.factory.map.primitive that return MutableIntDoubleMapModifier and TypeMethodDescriptionMutableIntDoubleMapFactory.empty()MutableIntDoubleMapFactory.from(Iterable<T> iterable, IntFunction<? super T> keyFunction, DoubleFunction<? super T> valueFunction) Creates anMutableIntDoubleMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.MutableIntDoubleMapFactory.of()Same asMutableIntDoubleMapFactory.empty().default MutableIntDoubleMapMutableIntDoubleMapFactory.of(int key, double value) default MutableIntDoubleMapMutableIntDoubleMapFactory.of(int key1, double value1, int key2, double value2) default MutableIntDoubleMapMutableIntDoubleMapFactory.of(int key1, double value1, int key2, double value2, int key3, double value3) default MutableIntDoubleMapMutableIntDoubleMapFactory.of(int key1, double value1, int key2, double value2, int key3, double value3, int key4, double value4) MutableIntDoubleMapFactory.ofAll(IntDoubleMap map) MutableIntDoubleMapFactory.ofInitialCapacity(int capacity) Same asMutableIntDoubleMapFactory.empty().MutableIntDoubleMapFactory.with()Same asMutableIntDoubleMapFactory.empty().default MutableIntDoubleMapMutableIntDoubleMapFactory.with(int key, double value) default MutableIntDoubleMapMutableIntDoubleMapFactory.with(int key1, double value1, int key2, double value2) default MutableIntDoubleMapMutableIntDoubleMapFactory.with(int key1, double value1, int key2, double value2, int key3, double value3) default MutableIntDoubleMapMutableIntDoubleMapFactory.with(int key1, double value1, int key2, double value2, int key3, double value3, int key4, double value4) MutableIntDoubleMapFactory.withAll(IntDoubleMap map) MutableIntDoubleMapFactory.withInitialCapacity(int capacity) Same asMutableIntDoubleMapFactory.empty(). -
Uses of MutableIntDoubleMap in org.eclipse.collections.api.map.primitive
Methods in org.eclipse.collections.api.map.primitive that return MutableIntDoubleMapModifier and TypeMethodDescriptionMutableIntDoubleMap.asSynchronized()Returns a synchronized view of this map, delegating all operations to this map but ensuring only one caller has access to the map at a time.MutableIntDoubleMap.asUnmodifiable()Returns an unmodifiable view of this map, delegating all read-only operations to this map and throwing anUnsupportedOperationExceptionfor all mutating operations.MutableDoubleIntMap.flipUniqueValues()MutableIntDoubleMap.reject(IntDoublePredicate predicate) MutableIntDoubleMap.select(IntDoublePredicate predicate) default MutableIntDoubleMapMutableIntDoubleMap.withAllKeyValues(Iterable<IntDoublePair> keyValuePairs) Puts all of the key/value mappings from the specified pairs into this map.MutableIntDoubleMap.withKeyValue(int key, double value) Associates a value with the specified key.MutableIntDoubleMap.withoutAllKeys(IntIterable keys) Removes the mappings associated with all the keys, if they exist, from this map.MutableIntDoubleMap.withoutKey(int key) Removes the mapping associated with the key, if one exists, from this map. -
Uses of MutableIntDoubleMap in org.eclipse.collections.impl.map.immutable.primitive
Fields in org.eclipse.collections.impl.map.immutable.primitive declared as MutableIntDoubleMapModifier and TypeFieldDescriptionprivate final MutableIntDoubleMapImmutableIntDoubleHashMap.delegate -
Uses of MutableIntDoubleMap in org.eclipse.collections.impl.map.mutable.primitive
Classes in org.eclipse.collections.impl.map.mutable.primitive that implement MutableIntDoubleMapModifier and TypeClassDescriptionclassThis file was automatically generated from template file primitivePrimitiveHashMap.stg.classA synchronized view of aMutableIntDoubleMap.classThis file was automatically generated from template file unmodifiablePrimitivePrimitiveMap.stg.Fields in org.eclipse.collections.impl.map.mutable.primitive declared as MutableIntDoubleMapModifier and TypeFieldDescriptionprivate final MutableIntDoubleMapSynchronizedIntDoubleMap.mapprivate final MutableIntDoubleMapUnmodifiableIntDoubleMap.mapMethods in org.eclipse.collections.impl.map.mutable.primitive that return MutableIntDoubleMapModifier and TypeMethodDescriptionIntDoubleHashMap.asSynchronized()SynchronizedIntDoubleMap.asSynchronized()UnmodifiableIntDoubleMap.asSynchronized()IntDoubleHashMap.asUnmodifiable()SynchronizedIntDoubleMap.asUnmodifiable()UnmodifiableIntDoubleMap.asUnmodifiable()MutableIntDoubleMapFactoryImpl.empty()DoubleIntHashMap.flipUniqueValues()SynchronizedDoubleIntMap.flipUniqueValues()UnmodifiableDoubleIntMap.flipUniqueValues()MutableIntDoubleMapFactoryImpl.from(Iterable<T> iterable, IntFunction<? super T> keyFunction, DoubleFunction<? super T> valueFunction) MutableIntDoubleMapFactoryImpl.of()MutableIntDoubleMapFactoryImpl.of(int key, double value) MutableIntDoubleMapFactoryImpl.of(int key1, double value1, int key2, double value2) MutableIntDoubleMapFactoryImpl.of(int key1, double value1, int key2, double value2, int key3, double value3) MutableIntDoubleMapFactoryImpl.of(int key1, double value1, int key2, double value2, int key3, double value3, int key4, double value4) MutableIntDoubleMapFactoryImpl.ofAll(IntDoubleMap map) MutableIntDoubleMapFactoryImpl.ofInitialCapacity(int capacity) SynchronizedIntDoubleMap.reject(IntDoublePredicate predicate) UnmodifiableIntDoubleMap.reject(IntDoublePredicate predicate) SynchronizedIntDoubleMap.select(IntDoublePredicate predicate) UnmodifiableIntDoubleMap.select(IntDoublePredicate predicate) MutableIntDoubleMapFactoryImpl.with()MutableIntDoubleMapFactoryImpl.with(int key, double value) MutableIntDoubleMapFactoryImpl.with(int key1, double value1, int key2, double value2) MutableIntDoubleMapFactoryImpl.with(int key1, double value1, int key2, double value2, int key3, double value3) MutableIntDoubleMapFactoryImpl.with(int key1, double value1, int key2, double value2, int key3, double value3, int key4, double value4) MutableIntDoubleMapFactoryImpl.withAll(IntDoubleMap map) MutableIntDoubleMapFactoryImpl.withInitialCapacity(int capacity) SynchronizedIntDoubleMap.withKeyValue(int key, double value) UnmodifiableIntDoubleMap.withKeyValue(int key, double value) SynchronizedIntDoubleMap.withoutAllKeys(IntIterable keys) UnmodifiableIntDoubleMap.withoutAllKeys(IntIterable keys) SynchronizedIntDoubleMap.withoutKey(int key) UnmodifiableIntDoubleMap.withoutKey(int key) Constructors in org.eclipse.collections.impl.map.mutable.primitive with parameters of type MutableIntDoubleMap