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.
-
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 anImmutableCharFloatMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.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.