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.
|
Modifier and Type | Method | Description |
---|---|---|
ImmutableIntDoubleMap |
ImmutableIntDoubleMapFactory.empty() |
|
<T> ImmutableIntDoubleMap |
ImmutableIntDoubleMapFactory.from(Iterable<T> iterable,
IntFunction<? super T> keyFunction,
DoubleFunction<? super T> valueFunction) |
Creates an
ImmutableIntDoubleMap from an Iterable<T> by applying keyFunction and valueFunction . |
ImmutableIntDoubleMap |
ImmutableIntDoubleMapFactory.of() |
Same as
ImmutableIntDoubleMapFactory.empty() . |
ImmutableIntDoubleMap |
ImmutableIntDoubleMapFactory.of(int key,
double value) |
|
ImmutableIntDoubleMap |
ImmutableIntDoubleMapFactory.ofAll(IntDoubleMap map) |
|
ImmutableIntDoubleMap |
ImmutableIntDoubleMapFactory.with() |
Same as
ImmutableIntDoubleMapFactory.empty() . |
ImmutableIntDoubleMap |
ImmutableIntDoubleMapFactory.with(int key,
double value) |
|
ImmutableIntDoubleMap |
ImmutableIntDoubleMapFactory.withAll(IntDoubleMap map) |
Modifier and Type | Method | Description |
---|---|---|
ImmutableIntDoubleMap |
ImmutableDoubleIntMap.flipUniqueValues() |
|
ImmutableIntDoubleMap |
ImmutableIntDoubleMap.newWithKeyValue(int key,
double value) |
|
ImmutableIntDoubleMap |
ImmutableIntDoubleMap.newWithoutAllKeys(IntIterable keys) |
|
ImmutableIntDoubleMap |
ImmutableIntDoubleMap.newWithoutKey(int key) |
|
ImmutableIntDoubleMap |
ImmutableIntDoubleMap.reject(IntDoublePredicate predicate) |
|
ImmutableIntDoubleMap |
ImmutableIntDoubleMap.select(IntDoublePredicate predicate) |
|
ImmutableIntDoubleMap |
IntDoubleMap.toImmutable() |
Modifier and Type | Method | Description |
---|---|---|
ImmutableIntDoubleMap |
ImmutableIntDoubleMapFactoryImpl.empty() |
|
<T> ImmutableIntDoubleMap |
ImmutableIntDoubleMapFactoryImpl.from(Iterable<T> iterable,
IntFunction<? super T> keyFunction,
DoubleFunction<? super T> valueFunction) |
|
ImmutableIntDoubleMap |
ImmutableIntDoubleMapFactoryImpl.of() |
|
ImmutableIntDoubleMap |
ImmutableIntDoubleMapFactoryImpl.of(int key,
double value) |
|
ImmutableIntDoubleMap |
ImmutableIntDoubleMapFactoryImpl.ofAll(IntDoubleMap map) |
|
ImmutableIntDoubleMap |
ImmutableIntDoubleMapFactoryImpl.with() |
|
ImmutableIntDoubleMap |
ImmutableIntDoubleMapFactoryImpl.with(int key,
double value) |
|
ImmutableIntDoubleMap |
ImmutableIntDoubleMapFactoryImpl.withAll(IntDoubleMap map) |
Modifier and Type | Method | Description |
---|---|---|
ImmutableIntDoubleMap |
IntDoubleHashMap.toImmutable() |
|
ImmutableIntDoubleMap |
SynchronizedIntDoubleMap.toImmutable() |
|
ImmutableIntDoubleMap |
UnmodifiableIntDoubleMap.toImmutable() |
Copyright © 2004–2019. All rights reserved.