Uses of Interface
org.eclipse.collections.api.map.primitive.ImmutableFloatIntMap
-
Packages that use ImmutableFloatIntMap Package Description org.eclipse.collections.api.factory.map.primitive org.eclipse.collections.api.map.primitive This package contains API for primitive to primitive maps, primitive to object maps and object to primitive maps with mutable and immutable variants.org.eclipse.collections.impl.map.immutable.primitive This package contains implementations of the immutable primitive-primitive, primitive-object and object-primitive map interfaces.org.eclipse.collections.impl.map.mutable.primitive This package contains implementations of the mutable primitive-primitive, primitive-object and object-primitive map interfaces. -
-
Uses of ImmutableFloatIntMap in org.eclipse.collections.api.factory.map.primitive
Methods in org.eclipse.collections.api.factory.map.primitive that return ImmutableFloatIntMap Modifier and Type Method Description ImmutableFloatIntMap
ImmutableFloatIntMapFactory. empty()
<T> ImmutableFloatIntMap
ImmutableFloatIntMapFactory. from(java.lang.Iterable<T> iterable, FloatFunction<? super T> keyFunction, IntFunction<? super T> valueFunction)
Creates anImmutableFloatIntMap
from anIterable<T>
by applyingkeyFunction
andvalueFunction
.ImmutableFloatIntMap
ImmutableFloatIntMapFactory. of()
Same asImmutableFloatIntMapFactory.empty()
.ImmutableFloatIntMap
ImmutableFloatIntMapFactory. of(float key, int value)
ImmutableFloatIntMap
ImmutableFloatIntMapFactory. ofAll(FloatIntMap map)
ImmutableFloatIntMap
ImmutableFloatIntMapFactory. with()
Same asImmutableFloatIntMapFactory.empty()
.ImmutableFloatIntMap
ImmutableFloatIntMapFactory. with(float key, int value)
ImmutableFloatIntMap
ImmutableFloatIntMapFactory. withAll(FloatIntMap map)
-
Uses of ImmutableFloatIntMap in org.eclipse.collections.api.map.primitive
Methods in org.eclipse.collections.api.map.primitive that return ImmutableFloatIntMap Modifier and Type Method Description ImmutableFloatIntMap
ImmutableIntFloatMap. flipUniqueValues()
ImmutableFloatIntMap
ImmutableFloatIntMap. newWithKeyValue(float key, int 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.ImmutableFloatIntMap
ImmutableFloatIntMap. newWithoutAllKeys(FloatIterable keys)
Copy this map, remove any associated values with the specified keys (if any exist), and return the copy as a new immutable map.ImmutableFloatIntMap
ImmutableFloatIntMap. newWithoutKey(float key)
Copy this map, remove any associated value with the key (if one exists), and return the copy as a new immutable map.ImmutableFloatIntMap
ImmutableFloatIntMap. reject(FloatIntPredicate predicate)
ImmutableFloatIntMap
ImmutableFloatIntMap. select(FloatIntPredicate predicate)
ImmutableFloatIntMap
FloatIntMap. toImmutable()
Returns a copy of this map that is immutable (if this map is mutable) or itself if it is already immutable. -
Uses of ImmutableFloatIntMap in org.eclipse.collections.impl.map.immutable.primitive
Classes in org.eclipse.collections.impl.map.immutable.primitive that implement ImmutableFloatIntMap Modifier and Type Class Description (package private) class
ImmutableFloatIntEmptyMap
ImmutableFloatIntEmptyMap is an optimization forImmutableFloatIntMap
of size 0.(package private) class
ImmutableFloatIntHashMap
ImmutableFloatIntHashMap is the non-modifiable equivalent ofFloatIntHashMap
.(package private) class
ImmutableFloatIntSingletonMap
ImmutableFloatIntSingletonMap is an optimization forImmutableFloatIntMap
of size 1.Fields in org.eclipse.collections.impl.map.immutable.primitive declared as ImmutableFloatIntMap Modifier and Type Field Description (package private) static ImmutableFloatIntMap
ImmutableFloatIntEmptyMap. INSTANCE
Methods in org.eclipse.collections.impl.map.immutable.primitive that return ImmutableFloatIntMap Modifier and Type Method Description ImmutableFloatIntMap
ImmutableFloatIntMapFactoryImpl. empty()
ImmutableFloatIntMap
ImmutableIntFloatEmptyMap. flipUniqueValues()
ImmutableFloatIntMap
ImmutableIntFloatHashMap. flipUniqueValues()
ImmutableFloatIntMap
ImmutableIntFloatSingletonMap. flipUniqueValues()
<T> ImmutableFloatIntMap
ImmutableFloatIntMapFactoryImpl. from(java.lang.Iterable<T> iterable, FloatFunction<? super T> keyFunction, IntFunction<? super T> valueFunction)
ImmutableFloatIntMap
ImmutableFloatIntEmptyMap. newWithKeyValue(float key, int value)
ImmutableFloatIntMap
ImmutableFloatIntHashMap. newWithKeyValue(float key, int value)
ImmutableFloatIntMap
ImmutableFloatIntSingletonMap. newWithKeyValue(float key, int value)
ImmutableFloatIntMap
ImmutableFloatIntEmptyMap. newWithoutAllKeys(FloatIterable keys)
ImmutableFloatIntMap
ImmutableFloatIntHashMap. newWithoutAllKeys(FloatIterable keys)
ImmutableFloatIntMap
ImmutableFloatIntSingletonMap. newWithoutAllKeys(FloatIterable keys)
ImmutableFloatIntMap
ImmutableFloatIntEmptyMap. newWithoutKey(float key)
ImmutableFloatIntMap
ImmutableFloatIntHashMap. newWithoutKey(float key)
ImmutableFloatIntMap
ImmutableFloatIntSingletonMap. newWithoutKey(float key)
ImmutableFloatIntMap
ImmutableFloatIntMapFactoryImpl. of()
ImmutableFloatIntMap
ImmutableFloatIntMapFactoryImpl. of(float key, int value)
ImmutableFloatIntMap
ImmutableFloatIntMapFactoryImpl. ofAll(FloatIntMap map)
ImmutableFloatIntMap
ImmutableFloatIntEmptyMap. reject(FloatIntPredicate predicate)
ImmutableFloatIntMap
ImmutableFloatIntHashMap. reject(FloatIntPredicate predicate)
ImmutableFloatIntMap
ImmutableFloatIntSingletonMap. reject(FloatIntPredicate predicate)
ImmutableFloatIntMap
ImmutableFloatIntEmptyMap. select(FloatIntPredicate predicate)
ImmutableFloatIntMap
ImmutableFloatIntHashMap. select(FloatIntPredicate predicate)
ImmutableFloatIntMap
ImmutableFloatIntSingletonMap. select(FloatIntPredicate predicate)
ImmutableFloatIntMap
ImmutableFloatIntEmptyMap. toImmutable()
ImmutableFloatIntMap
ImmutableFloatIntHashMap. toImmutable()
ImmutableFloatIntMap
ImmutableFloatIntSingletonMap. toImmutable()
ImmutableFloatIntMap
ImmutableFloatIntMapFactoryImpl. with()
ImmutableFloatIntMap
ImmutableFloatIntMapFactoryImpl. with(float key, int value)
ImmutableFloatIntMap
ImmutableFloatIntMapFactoryImpl. withAll(FloatIntMap map)
-
Uses of ImmutableFloatIntMap in org.eclipse.collections.impl.map.mutable.primitive
Methods in org.eclipse.collections.impl.map.mutable.primitive that return ImmutableFloatIntMap Modifier and Type Method Description ImmutableFloatIntMap
FloatIntHashMap. toImmutable()
ImmutableFloatIntMap
SynchronizedFloatIntMap. toImmutable()
ImmutableFloatIntMap
UnmodifiableFloatIntMap. toImmutable()
-