Uses of Interface
org.eclipse.collections.api.map.primitive.ImmutableDoubleLongMap
Packages that use ImmutableDoubleLongMap
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 ImmutableDoubleLongMap in org.eclipse.collections.api.factory.map.primitive
Methods in org.eclipse.collections.api.factory.map.primitive that return ImmutableDoubleLongMapModifier and TypeMethodDescriptionImmutableDoubleLongMapFactory.empty()
ImmutableDoubleLongMapFactory.from
(Iterable<T> iterable, DoubleFunction<? super T> keyFunction, LongFunction<? super T> valueFunction) Creates anImmutableDoubleLongMap
from anIterable<T>
by applyingkeyFunction
andvalueFunction
.ImmutableDoubleLongMapFactory.of()
ImmutableDoubleLongMapFactory.of
(double key, long value) ImmutableDoubleLongMapFactory.ofAll
(DoubleLongMap map) ImmutableDoubleLongMapFactory.with()
ImmutableDoubleLongMapFactory.with
(double key, long value) ImmutableDoubleLongMapFactory.withAll
(DoubleLongMap map) -
Uses of ImmutableDoubleLongMap in org.eclipse.collections.api.map.primitive
Methods in org.eclipse.collections.api.map.primitive that return ImmutableDoubleLongMapModifier and TypeMethodDescriptionImmutableLongDoubleMap.flipUniqueValues()
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.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.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.reject
(DoubleLongPredicate predicate) ImmutableDoubleLongMap.select
(DoubleLongPredicate predicate) 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 ImmutableDoubleLongMapModifier and TypeClassDescription(package private) final class
ImmutableDoubleLongEmptyMap is an optimization forImmutableDoubleLongMap
of size 0.(package private) final class
ImmutableDoubleLongHashMap is the non-modifiable equivalent ofDoubleLongHashMap
.(package private) final class
ImmutableDoubleLongSingletonMap is an optimization forImmutableDoubleLongMap
of size 1.Fields in org.eclipse.collections.impl.map.immutable.primitive declared as ImmutableDoubleLongMapModifier and TypeFieldDescription(package private) static final ImmutableDoubleLongMap
ImmutableDoubleLongEmptyMap.INSTANCE
Methods in org.eclipse.collections.impl.map.immutable.primitive that return ImmutableDoubleLongMapModifier and TypeMethodDescriptionImmutableDoubleLongMapFactoryImpl.empty()
ImmutableLongDoubleEmptyMap.flipUniqueValues()
ImmutableLongDoubleHashMap.flipUniqueValues()
ImmutableLongDoubleSingletonMap.flipUniqueValues()
ImmutableDoubleLongMapFactoryImpl.from
(Iterable<T> iterable, DoubleFunction<? super T> keyFunction, LongFunction<? super T> valueFunction) ImmutableDoubleLongEmptyMap.newWithKeyValue
(double key, long value) ImmutableDoubleLongHashMap.newWithKeyValue
(double key, long value) ImmutableDoubleLongSingletonMap.newWithKeyValue
(double key, long value) ImmutableDoubleLongEmptyMap.newWithoutAllKeys
(DoubleIterable keys) ImmutableDoubleLongHashMap.newWithoutAllKeys
(DoubleIterable keys) ImmutableDoubleLongSingletonMap.newWithoutAllKeys
(DoubleIterable keys) ImmutableDoubleLongEmptyMap.newWithoutKey
(double key) ImmutableDoubleLongHashMap.newWithoutKey
(double key) ImmutableDoubleLongSingletonMap.newWithoutKey
(double key) ImmutableDoubleLongMapFactoryImpl.of()
ImmutableDoubleLongMapFactoryImpl.of
(double key, long value) ImmutableDoubleLongMapFactoryImpl.ofAll
(DoubleLongMap map) ImmutableDoubleLongEmptyMap.reject
(DoubleLongPredicate predicate) ImmutableDoubleLongHashMap.reject
(DoubleLongPredicate predicate) ImmutableDoubleLongSingletonMap.reject
(DoubleLongPredicate predicate) ImmutableDoubleLongEmptyMap.select
(DoubleLongPredicate predicate) ImmutableDoubleLongHashMap.select
(DoubleLongPredicate predicate) ImmutableDoubleLongSingletonMap.select
(DoubleLongPredicate predicate) ImmutableDoubleLongEmptyMap.toImmutable()
ImmutableDoubleLongHashMap.toImmutable()
ImmutableDoubleLongSingletonMap.toImmutable()
ImmutableDoubleLongMapFactoryImpl.with()
ImmutableDoubleLongMapFactoryImpl.with
(double key, long value) 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 ImmutableDoubleLongMapModifier and TypeMethodDescriptionDoubleLongHashMap.toImmutable()
SynchronizedDoubleLongMap.toImmutable()
UnmodifiableDoubleLongMap.toImmutable()