Uses of Interface
org.eclipse.collections.api.map.primitive.ImmutableFloatDoubleMap
-
Packages that use ImmutableFloatDoubleMap 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 ImmutableFloatDoubleMap in org.eclipse.collections.api.factory.map.primitive
Methods in org.eclipse.collections.api.factory.map.primitive that return ImmutableFloatDoubleMap Modifier and Type Method Description ImmutableFloatDoubleMap
ImmutableFloatDoubleMapFactory. empty()
<T> ImmutableFloatDoubleMap
ImmutableFloatDoubleMapFactory. from(java.lang.Iterable<T> iterable, FloatFunction<? super T> keyFunction, DoubleFunction<? super T> valueFunction)
Creates anImmutableFloatDoubleMap
from anIterable<T>
by applyingkeyFunction
andvalueFunction
.ImmutableFloatDoubleMap
ImmutableFloatDoubleMapFactory. of()
ImmutableFloatDoubleMap
ImmutableFloatDoubleMapFactory. of(float key, double value)
ImmutableFloatDoubleMap
ImmutableFloatDoubleMapFactory. ofAll(FloatDoubleMap map)
ImmutableFloatDoubleMap
ImmutableFloatDoubleMapFactory. with()
ImmutableFloatDoubleMap
ImmutableFloatDoubleMapFactory. with(float key, double value)
ImmutableFloatDoubleMap
ImmutableFloatDoubleMapFactory. withAll(FloatDoubleMap map)
-
Uses of ImmutableFloatDoubleMap in org.eclipse.collections.api.map.primitive
Methods in org.eclipse.collections.api.map.primitive that return ImmutableFloatDoubleMap Modifier and Type Method Description ImmutableFloatDoubleMap
ImmutableDoubleFloatMap. flipUniqueValues()
ImmutableFloatDoubleMap
ImmutableFloatDoubleMap. newWithKeyValue(float 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.ImmutableFloatDoubleMap
ImmutableFloatDoubleMap. 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.ImmutableFloatDoubleMap
ImmutableFloatDoubleMap. 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.ImmutableFloatDoubleMap
ImmutableFloatDoubleMap. reject(FloatDoublePredicate predicate)
ImmutableFloatDoubleMap
ImmutableFloatDoubleMap. select(FloatDoublePredicate predicate)
ImmutableFloatDoubleMap
FloatDoubleMap. toImmutable()
Returns a copy of this map that is immutable (if this map is mutable) or itself if it is already immutable. -
Uses of ImmutableFloatDoubleMap in org.eclipse.collections.impl.map.immutable.primitive
Classes in org.eclipse.collections.impl.map.immutable.primitive that implement ImmutableFloatDoubleMap Modifier and Type Class Description (package private) class
ImmutableFloatDoubleEmptyMap
ImmutableFloatDoubleEmptyMap is an optimization forImmutableFloatDoubleMap
of size 0.(package private) class
ImmutableFloatDoubleHashMap
ImmutableFloatDoubleHashMap is the non-modifiable equivalent ofFloatDoubleHashMap
.(package private) class
ImmutableFloatDoubleSingletonMap
ImmutableFloatDoubleSingletonMap is an optimization forImmutableFloatDoubleMap
of size 1.Fields in org.eclipse.collections.impl.map.immutable.primitive declared as ImmutableFloatDoubleMap Modifier and Type Field Description (package private) static ImmutableFloatDoubleMap
ImmutableFloatDoubleEmptyMap. INSTANCE
Methods in org.eclipse.collections.impl.map.immutable.primitive that return ImmutableFloatDoubleMap Modifier and Type Method Description ImmutableFloatDoubleMap
ImmutableFloatDoubleMapFactoryImpl. empty()
ImmutableFloatDoubleMap
ImmutableDoubleFloatEmptyMap. flipUniqueValues()
ImmutableFloatDoubleMap
ImmutableDoubleFloatHashMap. flipUniqueValues()
ImmutableFloatDoubleMap
ImmutableDoubleFloatSingletonMap. flipUniqueValues()
<T> ImmutableFloatDoubleMap
ImmutableFloatDoubleMapFactoryImpl. from(java.lang.Iterable<T> iterable, FloatFunction<? super T> keyFunction, DoubleFunction<? super T> valueFunction)
ImmutableFloatDoubleMap
ImmutableFloatDoubleEmptyMap. newWithKeyValue(float key, double value)
ImmutableFloatDoubleMap
ImmutableFloatDoubleHashMap. newWithKeyValue(float key, double value)
ImmutableFloatDoubleMap
ImmutableFloatDoubleSingletonMap. newWithKeyValue(float key, double value)
ImmutableFloatDoubleMap
ImmutableFloatDoubleEmptyMap. newWithoutAllKeys(FloatIterable keys)
ImmutableFloatDoubleMap
ImmutableFloatDoubleHashMap. newWithoutAllKeys(FloatIterable keys)
ImmutableFloatDoubleMap
ImmutableFloatDoubleSingletonMap. newWithoutAllKeys(FloatIterable keys)
ImmutableFloatDoubleMap
ImmutableFloatDoubleEmptyMap. newWithoutKey(float key)
ImmutableFloatDoubleMap
ImmutableFloatDoubleHashMap. newWithoutKey(float key)
ImmutableFloatDoubleMap
ImmutableFloatDoubleSingletonMap. newWithoutKey(float key)
ImmutableFloatDoubleMap
ImmutableFloatDoubleMapFactoryImpl. of()
ImmutableFloatDoubleMap
ImmutableFloatDoubleMapFactoryImpl. of(float key, double value)
ImmutableFloatDoubleMap
ImmutableFloatDoubleMapFactoryImpl. ofAll(FloatDoubleMap map)
ImmutableFloatDoubleMap
ImmutableFloatDoubleEmptyMap. reject(FloatDoublePredicate predicate)
ImmutableFloatDoubleMap
ImmutableFloatDoubleHashMap. reject(FloatDoublePredicate predicate)
ImmutableFloatDoubleMap
ImmutableFloatDoubleSingletonMap. reject(FloatDoublePredicate predicate)
ImmutableFloatDoubleMap
ImmutableFloatDoubleEmptyMap. select(FloatDoublePredicate predicate)
ImmutableFloatDoubleMap
ImmutableFloatDoubleHashMap. select(FloatDoublePredicate predicate)
ImmutableFloatDoubleMap
ImmutableFloatDoubleSingletonMap. select(FloatDoublePredicate predicate)
ImmutableFloatDoubleMap
ImmutableFloatDoubleEmptyMap. toImmutable()
ImmutableFloatDoubleMap
ImmutableFloatDoubleHashMap. toImmutable()
ImmutableFloatDoubleMap
ImmutableFloatDoubleSingletonMap. toImmutable()
ImmutableFloatDoubleMap
ImmutableFloatDoubleMapFactoryImpl. with()
ImmutableFloatDoubleMap
ImmutableFloatDoubleMapFactoryImpl. with(float key, double value)
ImmutableFloatDoubleMap
ImmutableFloatDoubleMapFactoryImpl. withAll(FloatDoubleMap map)
-
Uses of ImmutableFloatDoubleMap in org.eclipse.collections.impl.map.mutable.primitive
Methods in org.eclipse.collections.impl.map.mutable.primitive that return ImmutableFloatDoubleMap Modifier and Type Method Description ImmutableFloatDoubleMap
FloatDoubleHashMap. toImmutable()
ImmutableFloatDoubleMap
SynchronizedFloatDoubleMap. toImmutable()
ImmutableFloatDoubleMap
UnmodifiableFloatDoubleMap. toImmutable()
-