Uses of Interface
org.eclipse.collections.api.map.primitive.ImmutableDoubleDoubleMap
Packages that use ImmutableDoubleDoubleMap
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 ImmutableDoubleDoubleMap in org.eclipse.collections.api.factory.map.primitive
Methods in org.eclipse.collections.api.factory.map.primitive that return ImmutableDoubleDoubleMapModifier and TypeMethodDescriptionImmutableDoubleDoubleMapFactory.empty()
ImmutableDoubleDoubleMapFactory.from
(Iterable<T> iterable, DoubleFunction<? super T> keyFunction, DoubleFunction<? super T> valueFunction) Creates anImmutableDoubleDoubleMap
from anIterable<T>
by applyingkeyFunction
andvalueFunction
.ImmutableDoubleDoubleMapFactory.of()
ImmutableDoubleDoubleMapFactory.of
(double key, double value) ImmutableDoubleDoubleMapFactory.ofAll
(DoubleDoubleMap map) ImmutableDoubleDoubleMapFactory.with()
ImmutableDoubleDoubleMapFactory.with
(double key, double value) ImmutableDoubleDoubleMapFactory.withAll
(DoubleDoubleMap map) -
Uses of ImmutableDoubleDoubleMap in org.eclipse.collections.api.map.primitive
Methods in org.eclipse.collections.api.map.primitive that return ImmutableDoubleDoubleMapModifier and TypeMethodDescriptionImmutableDoubleDoubleMap.flipUniqueValues()
ImmutableDoubleDoubleMap.newWithKeyValue
(double 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.ImmutableDoubleDoubleMap.newWithoutAllKeys
(DoubleIterable keys) Copy this map, remove any associated values with the specified keys (if any exist), and return the copy as a new immutable map.ImmutableDoubleDoubleMap.newWithoutKey
(double key) Copy this map, remove any associated value with the key (if one exists), and return the copy as a new immutable map.ImmutableDoubleDoubleMap.reject
(DoubleDoublePredicate predicate) ImmutableDoubleDoubleMap.select
(DoubleDoublePredicate predicate) DoubleDoubleMap.toImmutable()
Returns a copy of this map that is immutable (if this map is mutable) or itself if it is already immutable. -
Uses of ImmutableDoubleDoubleMap in org.eclipse.collections.impl.map.immutable.primitive
Classes in org.eclipse.collections.impl.map.immutable.primitive that implement ImmutableDoubleDoubleMapModifier and TypeClassDescription(package private) final class
ImmutableDoubleDoubleEmptyMap is an optimization forImmutableDoubleDoubleMap
of size 0.(package private) final class
ImmutableDoubleDoubleHashMap is the non-modifiable equivalent ofDoubleDoubleHashMap
.(package private) final class
ImmutableDoubleDoubleSingletonMap is an optimization forImmutableDoubleDoubleMap
of size 1.Fields in org.eclipse.collections.impl.map.immutable.primitive declared as ImmutableDoubleDoubleMapModifier and TypeFieldDescription(package private) static final ImmutableDoubleDoubleMap
ImmutableDoubleDoubleEmptyMap.INSTANCE
Methods in org.eclipse.collections.impl.map.immutable.primitive that return ImmutableDoubleDoubleMapModifier and TypeMethodDescriptionImmutableDoubleDoubleMapFactoryImpl.empty()
ImmutableDoubleDoubleEmptyMap.flipUniqueValues()
ImmutableDoubleDoubleHashMap.flipUniqueValues()
ImmutableDoubleDoubleSingletonMap.flipUniqueValues()
ImmutableDoubleDoubleMapFactoryImpl.from
(Iterable<T> iterable, DoubleFunction<? super T> keyFunction, DoubleFunction<? super T> valueFunction) ImmutableDoubleDoubleEmptyMap.newWithKeyValue
(double key, double value) ImmutableDoubleDoubleHashMap.newWithKeyValue
(double key, double value) ImmutableDoubleDoubleSingletonMap.newWithKeyValue
(double key, double value) ImmutableDoubleDoubleEmptyMap.newWithoutAllKeys
(DoubleIterable keys) ImmutableDoubleDoubleHashMap.newWithoutAllKeys
(DoubleIterable keys) ImmutableDoubleDoubleSingletonMap.newWithoutAllKeys
(DoubleIterable keys) ImmutableDoubleDoubleEmptyMap.newWithoutKey
(double key) ImmutableDoubleDoubleHashMap.newWithoutKey
(double key) ImmutableDoubleDoubleSingletonMap.newWithoutKey
(double key) ImmutableDoubleDoubleMapFactoryImpl.of()
ImmutableDoubleDoubleMapFactoryImpl.of
(double key, double value) ImmutableDoubleDoubleMapFactoryImpl.ofAll
(DoubleDoubleMap map) ImmutableDoubleDoubleEmptyMap.reject
(DoubleDoublePredicate predicate) ImmutableDoubleDoubleHashMap.reject
(DoubleDoublePredicate predicate) ImmutableDoubleDoubleSingletonMap.reject
(DoubleDoublePredicate predicate) ImmutableDoubleDoubleEmptyMap.select
(DoubleDoublePredicate predicate) ImmutableDoubleDoubleHashMap.select
(DoubleDoublePredicate predicate) ImmutableDoubleDoubleSingletonMap.select
(DoubleDoublePredicate predicate) ImmutableDoubleDoubleEmptyMap.toImmutable()
ImmutableDoubleDoubleHashMap.toImmutable()
ImmutableDoubleDoubleSingletonMap.toImmutable()
ImmutableDoubleDoubleMapFactoryImpl.with()
ImmutableDoubleDoubleMapFactoryImpl.with
(double key, double value) ImmutableDoubleDoubleMapFactoryImpl.withAll
(DoubleDoubleMap map) -
Uses of ImmutableDoubleDoubleMap in org.eclipse.collections.impl.map.mutable.primitive
Methods in org.eclipse.collections.impl.map.mutable.primitive that return ImmutableDoubleDoubleMapModifier and TypeMethodDescriptionDoubleDoubleHashMap.toImmutable()
SynchronizedDoubleDoubleMap.toImmutable()
UnmodifiableDoubleDoubleMap.toImmutable()