Uses of Interface
org.eclipse.collections.api.map.primitive.ImmutableCharDoubleMap
Packages that use ImmutableCharDoubleMap
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 ImmutableCharDoubleMap in org.eclipse.collections.api.factory.map.primitive
Methods in org.eclipse.collections.api.factory.map.primitive that return ImmutableCharDoubleMapModifier and TypeMethodDescriptionImmutableCharDoubleMapFactory.empty()
ImmutableCharDoubleMapFactory.from
(Iterable<T> iterable, CharFunction<? super T> keyFunction, DoubleFunction<? super T> valueFunction) Creates anImmutableCharDoubleMap
from anIterable<T>
by applyingkeyFunction
andvalueFunction
.ImmutableCharDoubleMapFactory.of()
ImmutableCharDoubleMapFactory.of
(char key, double value) ImmutableCharDoubleMapFactory.ofAll
(CharDoubleMap map) ImmutableCharDoubleMapFactory.with()
ImmutableCharDoubleMapFactory.with
(char key, double value) ImmutableCharDoubleMapFactory.withAll
(CharDoubleMap map) -
Uses of ImmutableCharDoubleMap in org.eclipse.collections.api.map.primitive
Methods in org.eclipse.collections.api.map.primitive that return ImmutableCharDoubleMapModifier and TypeMethodDescriptionImmutableDoubleCharMap.flipUniqueValues()
ImmutableCharDoubleMap.newWithKeyValue
(char 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.ImmutableCharDoubleMap.newWithoutAllKeys
(CharIterable keys) Copy this map, remove any associated values with the specified keys (if any exist), and return the copy as a new immutable map.ImmutableCharDoubleMap.newWithoutKey
(char key) Copy this map, remove any associated value with the key (if one exists), and return the copy as a new immutable map.ImmutableCharDoubleMap.reject
(CharDoublePredicate predicate) ImmutableCharDoubleMap.select
(CharDoublePredicate predicate) CharDoubleMap.toImmutable()
Returns a copy of this map that is immutable (if this map is mutable) or itself if it is already immutable. -
Uses of ImmutableCharDoubleMap in org.eclipse.collections.impl.map.immutable.primitive
Classes in org.eclipse.collections.impl.map.immutable.primitive that implement ImmutableCharDoubleMapModifier and TypeClassDescription(package private) final class
ImmutableCharDoubleEmptyMap is an optimization forImmutableCharDoubleMap
of size 0.(package private) final class
ImmutableCharDoubleHashMap is the non-modifiable equivalent ofCharDoubleHashMap
.(package private) final class
ImmutableCharDoubleSingletonMap is an optimization forImmutableCharDoubleMap
of size 1.Fields in org.eclipse.collections.impl.map.immutable.primitive declared as ImmutableCharDoubleMapModifier and TypeFieldDescription(package private) static final ImmutableCharDoubleMap
ImmutableCharDoubleEmptyMap.INSTANCE
Methods in org.eclipse.collections.impl.map.immutable.primitive that return ImmutableCharDoubleMapModifier and TypeMethodDescriptionImmutableCharDoubleMapFactoryImpl.empty()
ImmutableDoubleCharEmptyMap.flipUniqueValues()
ImmutableDoubleCharHashMap.flipUniqueValues()
ImmutableDoubleCharSingletonMap.flipUniqueValues()
ImmutableCharDoubleMapFactoryImpl.from
(Iterable<T> iterable, CharFunction<? super T> keyFunction, DoubleFunction<? super T> valueFunction) ImmutableCharDoubleEmptyMap.newWithKeyValue
(char key, double value) ImmutableCharDoubleHashMap.newWithKeyValue
(char key, double value) ImmutableCharDoubleSingletonMap.newWithKeyValue
(char key, double value) ImmutableCharDoubleEmptyMap.newWithoutAllKeys
(CharIterable keys) ImmutableCharDoubleHashMap.newWithoutAllKeys
(CharIterable keys) ImmutableCharDoubleSingletonMap.newWithoutAllKeys
(CharIterable keys) ImmutableCharDoubleEmptyMap.newWithoutKey
(char key) ImmutableCharDoubleHashMap.newWithoutKey
(char key) ImmutableCharDoubleSingletonMap.newWithoutKey
(char key) ImmutableCharDoubleMapFactoryImpl.of()
ImmutableCharDoubleMapFactoryImpl.of
(char key, double value) ImmutableCharDoubleMapFactoryImpl.ofAll
(CharDoubleMap map) ImmutableCharDoubleEmptyMap.reject
(CharDoublePredicate predicate) ImmutableCharDoubleHashMap.reject
(CharDoublePredicate predicate) ImmutableCharDoubleSingletonMap.reject
(CharDoublePredicate predicate) ImmutableCharDoubleEmptyMap.select
(CharDoublePredicate predicate) ImmutableCharDoubleHashMap.select
(CharDoublePredicate predicate) ImmutableCharDoubleSingletonMap.select
(CharDoublePredicate predicate) ImmutableCharDoubleEmptyMap.toImmutable()
ImmutableCharDoubleHashMap.toImmutable()
ImmutableCharDoubleSingletonMap.toImmutable()
ImmutableCharDoubleMapFactoryImpl.with()
ImmutableCharDoubleMapFactoryImpl.with
(char key, double value) ImmutableCharDoubleMapFactoryImpl.withAll
(CharDoubleMap map) -
Uses of ImmutableCharDoubleMap in org.eclipse.collections.impl.map.mutable.primitive
Methods in org.eclipse.collections.impl.map.mutable.primitive that return ImmutableCharDoubleMapModifier and TypeMethodDescriptionCharDoubleHashMap.toImmutable()
SynchronizedCharDoubleMap.toImmutable()
UnmodifiableCharDoubleMap.toImmutable()