Uses of Interface
org.eclipse.collections.api.map.primitive.ImmutableIntDoubleMap
Packages that use ImmutableIntDoubleMap
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 ImmutableIntDoubleMap in org.eclipse.collections.api.factory.map.primitive
Methods in org.eclipse.collections.api.factory.map.primitive that return ImmutableIntDoubleMapModifier and TypeMethodDescriptionImmutableIntDoubleMapFactory.empty()
ImmutableIntDoubleMapFactory.from
(Iterable<T> iterable, IntFunction<? super T> keyFunction, DoubleFunction<? super T> valueFunction) Creates anImmutableIntDoubleMap
from anIterable<T>
by applyingkeyFunction
andvalueFunction
.ImmutableIntDoubleMapFactory.of()
Same asImmutableIntDoubleMapFactory.empty()
.ImmutableIntDoubleMapFactory.of
(int key, double value) ImmutableIntDoubleMapFactory.ofAll
(IntDoubleMap map) ImmutableIntDoubleMapFactory.with()
Same asImmutableIntDoubleMapFactory.empty()
.ImmutableIntDoubleMapFactory.with
(int key, double value) ImmutableIntDoubleMapFactory.withAll
(IntDoubleMap map) -
Uses of ImmutableIntDoubleMap in org.eclipse.collections.api.map.primitive
Methods in org.eclipse.collections.api.map.primitive that return ImmutableIntDoubleMapModifier and TypeMethodDescriptionImmutableDoubleIntMap.flipUniqueValues()
ImmutableIntDoubleMap.newWithKeyValue
(int key, double value) Copy this map, associate the value with the key (replacing the value if one already exists forkey
), and return the copy as new immutable map.ImmutableIntDoubleMap.newWithoutAllKeys
(IntIterable keys) Copy this map, remove any associated values with the specified keys (if any exist), and return the copy as a new immutable map.ImmutableIntDoubleMap.newWithoutKey
(int key) Copy this map, remove any associated value with the key (if one exists), and return the copy as a new immutable map.ImmutableIntDoubleMap.reject
(IntDoublePredicate predicate) ImmutableIntDoubleMap.select
(IntDoublePredicate predicate) IntDoubleMap.toImmutable()
Returns a copy of this map that is immutable (if this map is mutable) or itself if it is already immutable. -
Uses of ImmutableIntDoubleMap in org.eclipse.collections.impl.map.immutable.primitive
Classes in org.eclipse.collections.impl.map.immutable.primitive that implement ImmutableIntDoubleMapModifier and TypeClassDescription(package private) final class
ImmutableIntDoubleEmptyMap is an optimization forImmutableIntDoubleMap
of size 0.(package private) final class
ImmutableIntDoubleHashMap is the non-modifiable equivalent ofIntDoubleHashMap
.(package private) final class
ImmutableIntDoubleSingletonMap is an optimization forImmutableIntDoubleMap
of size 1.Fields in org.eclipse.collections.impl.map.immutable.primitive declared as ImmutableIntDoubleMapModifier and TypeFieldDescription(package private) static final ImmutableIntDoubleMap
ImmutableIntDoubleEmptyMap.INSTANCE
Methods in org.eclipse.collections.impl.map.immutable.primitive that return ImmutableIntDoubleMapModifier and TypeMethodDescriptionImmutableIntDoubleMapFactoryImpl.empty()
ImmutableDoubleIntEmptyMap.flipUniqueValues()
ImmutableDoubleIntHashMap.flipUniqueValues()
ImmutableDoubleIntSingletonMap.flipUniqueValues()
ImmutableIntDoubleMapFactoryImpl.from
(Iterable<T> iterable, IntFunction<? super T> keyFunction, DoubleFunction<? super T> valueFunction) ImmutableIntDoubleEmptyMap.newWithKeyValue
(int key, double value) ImmutableIntDoubleHashMap.newWithKeyValue
(int key, double value) ImmutableIntDoubleSingletonMap.newWithKeyValue
(int key, double value) ImmutableIntDoubleEmptyMap.newWithoutAllKeys
(IntIterable keys) ImmutableIntDoubleHashMap.newWithoutAllKeys
(IntIterable keys) ImmutableIntDoubleSingletonMap.newWithoutAllKeys
(IntIterable keys) ImmutableIntDoubleEmptyMap.newWithoutKey
(int key) ImmutableIntDoubleHashMap.newWithoutKey
(int key) ImmutableIntDoubleSingletonMap.newWithoutKey
(int key) ImmutableIntDoubleMapFactoryImpl.of()
ImmutableIntDoubleMapFactoryImpl.of
(int key, double value) ImmutableIntDoubleMapFactoryImpl.ofAll
(IntDoubleMap map) ImmutableIntDoubleEmptyMap.reject
(IntDoublePredicate predicate) ImmutableIntDoubleHashMap.reject
(IntDoublePredicate predicate) ImmutableIntDoubleSingletonMap.reject
(IntDoublePredicate predicate) ImmutableIntDoubleEmptyMap.select
(IntDoublePredicate predicate) ImmutableIntDoubleHashMap.select
(IntDoublePredicate predicate) ImmutableIntDoubleSingletonMap.select
(IntDoublePredicate predicate) ImmutableIntDoubleEmptyMap.toImmutable()
ImmutableIntDoubleHashMap.toImmutable()
ImmutableIntDoubleSingletonMap.toImmutable()
ImmutableIntDoubleMapFactoryImpl.with()
ImmutableIntDoubleMapFactoryImpl.with
(int key, double value) ImmutableIntDoubleMapFactoryImpl.withAll
(IntDoubleMap map) -
Uses of ImmutableIntDoubleMap in org.eclipse.collections.impl.map.mutable.primitive
Methods in org.eclipse.collections.impl.map.mutable.primitive that return ImmutableIntDoubleMapModifier and TypeMethodDescriptionIntDoubleHashMap.toImmutable()
SynchronizedIntDoubleMap.toImmutable()
UnmodifiableIntDoubleMap.toImmutable()