Uses of Interface
org.eclipse.collections.api.map.primitive.ImmutableDoubleLongMap
-
Packages that use ImmutableDoubleLongMap 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 ImmutableDoubleLongMap in org.eclipse.collections.api.factory.map.primitive
Methods in org.eclipse.collections.api.factory.map.primitive that return ImmutableDoubleLongMap Modifier and Type Method Description ImmutableDoubleLongMap
ImmutableDoubleLongMapFactory. empty()
<T> ImmutableDoubleLongMap
ImmutableDoubleLongMapFactory. from(java.lang.Iterable<T> iterable, DoubleFunction<? super T> keyFunction, LongFunction<? super T> valueFunction)
Creates anImmutableDoubleLongMap
from anIterable<T>
by applyingkeyFunction
andvalueFunction
.ImmutableDoubleLongMap
ImmutableDoubleLongMapFactory. of()
ImmutableDoubleLongMap
ImmutableDoubleLongMapFactory. of(double key, long value)
ImmutableDoubleLongMap
ImmutableDoubleLongMapFactory. ofAll(DoubleLongMap map)
ImmutableDoubleLongMap
ImmutableDoubleLongMapFactory. with()
ImmutableDoubleLongMap
ImmutableDoubleLongMapFactory. with(double key, long value)
ImmutableDoubleLongMap
ImmutableDoubleLongMapFactory. withAll(DoubleLongMap map)
-
Uses of ImmutableDoubleLongMap in org.eclipse.collections.api.map.primitive
Methods in org.eclipse.collections.api.map.primitive that return ImmutableDoubleLongMap Modifier and Type Method Description ImmutableDoubleLongMap
ImmutableLongDoubleMap. flipUniqueValues()
ImmutableDoubleLongMap
ImmutableDoubleLongMap. newWithKeyValue(double key, long 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.ImmutableDoubleLongMap
ImmutableDoubleLongMap. newWithoutAllKeys(DoubleIterable keys)
Copy this map, remove any associated values with the specified keys (if any exist), and return the copy as a new immutable map.ImmutableDoubleLongMap
ImmutableDoubleLongMap. newWithoutKey(double key)
Copy this map, remove any associated value with the key (if one exists), and return the copy as a new immutable map.ImmutableDoubleLongMap
ImmutableDoubleLongMap. reject(DoubleLongPredicate predicate)
ImmutableDoubleLongMap
ImmutableDoubleLongMap. select(DoubleLongPredicate predicate)
ImmutableDoubleLongMap
DoubleLongMap. toImmutable()
Returns a copy of this map that is immutable (if this map is mutable) or itself if it is already immutable. -
Uses of ImmutableDoubleLongMap in org.eclipse.collections.impl.map.immutable.primitive
Classes in org.eclipse.collections.impl.map.immutable.primitive that implement ImmutableDoubleLongMap Modifier and Type Class Description (package private) class
ImmutableDoubleLongEmptyMap
ImmutableDoubleLongEmptyMap is an optimization forImmutableDoubleLongMap
of size 0.(package private) class
ImmutableDoubleLongHashMap
ImmutableDoubleLongHashMap is the non-modifiable equivalent ofDoubleLongHashMap
.(package private) class
ImmutableDoubleLongSingletonMap
ImmutableDoubleLongSingletonMap is an optimization forImmutableDoubleLongMap
of size 1.Fields in org.eclipse.collections.impl.map.immutable.primitive declared as ImmutableDoubleLongMap Modifier and Type Field Description (package private) static ImmutableDoubleLongMap
ImmutableDoubleLongEmptyMap. INSTANCE
Methods in org.eclipse.collections.impl.map.immutable.primitive that return ImmutableDoubleLongMap Modifier and Type Method Description ImmutableDoubleLongMap
ImmutableDoubleLongMapFactoryImpl. empty()
ImmutableDoubleLongMap
ImmutableLongDoubleEmptyMap. flipUniqueValues()
ImmutableDoubleLongMap
ImmutableLongDoubleHashMap. flipUniqueValues()
ImmutableDoubleLongMap
ImmutableLongDoubleSingletonMap. flipUniqueValues()
<T> ImmutableDoubleLongMap
ImmutableDoubleLongMapFactoryImpl. from(java.lang.Iterable<T> iterable, DoubleFunction<? super T> keyFunction, LongFunction<? super T> valueFunction)
ImmutableDoubleLongMap
ImmutableDoubleLongEmptyMap. newWithKeyValue(double key, long value)
ImmutableDoubleLongMap
ImmutableDoubleLongHashMap. newWithKeyValue(double key, long value)
ImmutableDoubleLongMap
ImmutableDoubleLongSingletonMap. newWithKeyValue(double key, long value)
ImmutableDoubleLongMap
ImmutableDoubleLongEmptyMap. newWithoutAllKeys(DoubleIterable keys)
ImmutableDoubleLongMap
ImmutableDoubleLongHashMap. newWithoutAllKeys(DoubleIterable keys)
ImmutableDoubleLongMap
ImmutableDoubleLongSingletonMap. newWithoutAllKeys(DoubleIterable keys)
ImmutableDoubleLongMap
ImmutableDoubleLongEmptyMap. newWithoutKey(double key)
ImmutableDoubleLongMap
ImmutableDoubleLongHashMap. newWithoutKey(double key)
ImmutableDoubleLongMap
ImmutableDoubleLongSingletonMap. newWithoutKey(double key)
ImmutableDoubleLongMap
ImmutableDoubleLongMapFactoryImpl. of()
ImmutableDoubleLongMap
ImmutableDoubleLongMapFactoryImpl. of(double key, long value)
ImmutableDoubleLongMap
ImmutableDoubleLongMapFactoryImpl. ofAll(DoubleLongMap map)
ImmutableDoubleLongMap
ImmutableDoubleLongEmptyMap. reject(DoubleLongPredicate predicate)
ImmutableDoubleLongMap
ImmutableDoubleLongHashMap. reject(DoubleLongPredicate predicate)
ImmutableDoubleLongMap
ImmutableDoubleLongSingletonMap. reject(DoubleLongPredicate predicate)
ImmutableDoubleLongMap
ImmutableDoubleLongEmptyMap. select(DoubleLongPredicate predicate)
ImmutableDoubleLongMap
ImmutableDoubleLongHashMap. select(DoubleLongPredicate predicate)
ImmutableDoubleLongMap
ImmutableDoubleLongSingletonMap. select(DoubleLongPredicate predicate)
ImmutableDoubleLongMap
ImmutableDoubleLongEmptyMap. toImmutable()
ImmutableDoubleLongMap
ImmutableDoubleLongHashMap. toImmutable()
ImmutableDoubleLongMap
ImmutableDoubleLongSingletonMap. toImmutable()
ImmutableDoubleLongMap
ImmutableDoubleLongMapFactoryImpl. with()
ImmutableDoubleLongMap
ImmutableDoubleLongMapFactoryImpl. with(double key, long value)
ImmutableDoubleLongMap
ImmutableDoubleLongMapFactoryImpl. withAll(DoubleLongMap map)
-
Uses of ImmutableDoubleLongMap in org.eclipse.collections.impl.map.mutable.primitive
Methods in org.eclipse.collections.impl.map.mutable.primitive that return ImmutableDoubleLongMap Modifier and Type Method Description ImmutableDoubleLongMap
DoubleLongHashMap. toImmutable()
ImmutableDoubleLongMap
SynchronizedDoubleLongMap. toImmutable()
ImmutableDoubleLongMap
UnmodifiableDoubleLongMap. toImmutable()
-