<K> MutableObjectIntMap<K> |
MutableObjectIntHashingStrategyMapFactory.empty(HashingStrategy<? super K> hashingStrategy) |
|
<K> MutableObjectIntMap<K> |
MutableObjectIntMapFactory.empty() |
|
<T,K> MutableObjectIntMap<K> |
MutableObjectIntMapFactory.from(Iterable<T> iterable,
Function<? super T,? extends K> keyFunction,
IntFunction<? super T> valueFunction) |
Creates an MutableObjectIntMap from an Iterable<T> by applying keyFunction and valueFunction.
|
<K> MutableObjectIntMap<K> |
MutableObjectIntHashingStrategyMapFactory.of(HashingStrategy<? super K> hashingStrategy) |
Same as #empty().
|
<K> MutableObjectIntMap<K> |
MutableObjectIntMapFactory.of() |
|
default <K> MutableObjectIntMap<K> |
MutableObjectIntMapFactory.of(K key,
int value) |
|
default <K> MutableObjectIntMap<K> |
MutableObjectIntMapFactory.of(K key1,
int value1,
K key2,
int value2) |
|
default <K> MutableObjectIntMap<K> |
MutableObjectIntMapFactory.of(K key1,
int value1,
K key2,
int value2,
K key3,
int value3) |
|
default <K> MutableObjectIntMap<K> |
MutableObjectIntMapFactory.of(K key1,
int value1,
K key2,
int value2,
K key3,
int value3,
K key4,
int value4) |
|
<K> MutableObjectIntMap<K> |
MutableObjectIntMapFactory.ofAll(ObjectIntMap<? extends K> map) |
|
<K> MutableObjectIntMap<K> |
MutableObjectIntMapFactory.ofInitialCapacity(int capacity) |
|
<K> MutableObjectIntMap<K> |
MutableObjectIntHashingStrategyMapFactory.with(HashingStrategy<? super K> hashingStrategy) |
Same as #empty().
|
<K> MutableObjectIntMap<K> |
MutableObjectIntMapFactory.with() |
|
default <K> MutableObjectIntMap<K> |
MutableObjectIntMapFactory.with(K key,
int value) |
|
default <K> MutableObjectIntMap<K> |
MutableObjectIntMapFactory.with(K key1,
int value1,
K key2,
int value2) |
|
default <K> MutableObjectIntMap<K> |
MutableObjectIntMapFactory.with(K key1,
int value1,
K key2,
int value2,
K key3,
int value3) |
|
default <K> MutableObjectIntMap<K> |
MutableObjectIntMapFactory.with(K key1,
int value1,
K key2,
int value2,
K key3,
int value3,
K key4,
int value4) |
|
<K> MutableObjectIntMap<K> |
MutableObjectIntMapFactory.withAll(ObjectIntMap<? extends K> map) |
|
<K> MutableObjectIntMap<K> |
MutableObjectIntHashingStrategyMapFactory.withInitialCapacity(HashingStrategy<? super K> hashingStrategy,
int initialCapacity) |
Same as #empty() but takes in an initial capacity
|
<K> MutableObjectIntMap<K> |
MutableObjectIntMapFactory.withInitialCapacity(int capacity) |
|