Uses of Interface
org.eclipse.collections.api.map.primitive.ImmutableCharFloatMap
Packages that use ImmutableCharFloatMap
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 ImmutableCharFloatMap in org.eclipse.collections.api.factory.map.primitive
Methods in org.eclipse.collections.api.factory.map.primitive that return ImmutableCharFloatMapModifier and TypeMethodDescriptionImmutableCharFloatMapFactory.empty()
ImmutableCharFloatMapFactory.from
(Iterable<T> iterable, CharFunction<? super T> keyFunction, FloatFunction<? super T> valueFunction) Creates anImmutableCharFloatMap
from anIterable<T>
by applyingkeyFunction
andvalueFunction
.ImmutableCharFloatMapFactory.of()
Same asImmutableCharFloatMapFactory.empty()
.ImmutableCharFloatMapFactory.of
(char key, float value) ImmutableCharFloatMapFactory.ofAll
(CharFloatMap map) ImmutableCharFloatMapFactory.with()
Same asImmutableCharFloatMapFactory.empty()
.ImmutableCharFloatMapFactory.with
(char key, float value) ImmutableCharFloatMapFactory.withAll
(CharFloatMap map) -
Uses of ImmutableCharFloatMap in org.eclipse.collections.api.map.primitive
Methods in org.eclipse.collections.api.map.primitive that return ImmutableCharFloatMapModifier and TypeMethodDescriptionImmutableFloatCharMap.flipUniqueValues()
ImmutableCharFloatMap.newWithKeyValue
(char key, float 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.ImmutableCharFloatMap.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.ImmutableCharFloatMap.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.ImmutableCharFloatMap.reject
(CharFloatPredicate predicate) ImmutableCharFloatMap.select
(CharFloatPredicate predicate) CharFloatMap.toImmutable()
Returns a copy of this map that is immutable (if this map is mutable) or itself if it is already immutable. -
Uses of ImmutableCharFloatMap in org.eclipse.collections.impl.map.immutable.primitive
Methods in org.eclipse.collections.impl.map.immutable.primitive that return ImmutableCharFloatMapModifier and TypeMethodDescriptionImmutableCharFloatMapFactoryImpl.empty()
ImmutableCharFloatMapFactoryImpl.from
(Iterable<T> iterable, CharFunction<? super T> keyFunction, FloatFunction<? super T> valueFunction) ImmutableCharFloatMapFactoryImpl.of()
ImmutableCharFloatMapFactoryImpl.of
(char key, float value) ImmutableCharFloatMapFactoryImpl.ofAll
(CharFloatMap map) ImmutableCharFloatMapFactoryImpl.with()
ImmutableCharFloatMapFactoryImpl.with
(char key, float value) ImmutableCharFloatMapFactoryImpl.withAll
(CharFloatMap map) -
Uses of ImmutableCharFloatMap in org.eclipse.collections.impl.map.mutable.primitive
Methods in org.eclipse.collections.impl.map.mutable.primitive that return ImmutableCharFloatMapModifier and TypeMethodDescriptionCharFloatHashMap.toImmutable()
SynchronizedCharFloatMap.toImmutable()
UnmodifiableCharFloatMap.toImmutable()