MutableLongIntMapFactoryImplpublic interface MutableLongIntMapFactory
MutableLongIntMap.
This file was automatically generated from template file mutablePrimitivePrimitiveMapFactory.stg.| Modifier and Type | Method | Description |
|---|---|---|
MutableLongIntMap |
empty() |
|
<T> MutableLongIntMap |
from(Iterable<T> iterable,
LongFunction<? super T> keyFunction,
IntFunction<? super T> valueFunction) |
Creates an
MutableLongIntMap from an Iterable<T> by applying keyFunction and valueFunction. |
MutableLongIntMap |
of() |
Same as
empty(). |
MutableLongIntMap |
ofAll(LongIntMap map) |
Same as
withAll(LongIntMap). |
MutableLongIntMap |
ofInitialCapacity(int capacity) |
Same as
empty(). |
MutableLongIntMap |
with() |
Same as
empty(). |
MutableLongIntMap |
withAll(LongIntMap map) |
|
MutableLongIntMap |
withInitialCapacity(int capacity) |
Same as
empty(). |
MutableLongIntMap empty()
MutableLongIntMap of()
empty().MutableLongIntMap with()
empty().MutableLongIntMap ofInitialCapacity(int capacity)
empty(). but takes in an initial capacityMutableLongIntMap withInitialCapacity(int capacity)
empty(). but takes in an initial capacityMutableLongIntMap ofAll(LongIntMap map)
withAll(LongIntMap).MutableLongIntMap withAll(LongIntMap map)
<T> MutableLongIntMap from(Iterable<T> iterable, LongFunction<? super T> keyFunction, IntFunction<? super T> valueFunction)
MutableLongIntMap from an Iterable<T> by applying keyFunction and valueFunction.Copyright © 2004–2019. All rights reserved.