Interface MutableLongIntMapFactory
- All Known Implementing Classes:
MutableLongIntMapFactoryImpl
public interface MutableLongIntMapFactory
A factory which creates instances of type
MutableLongIntMap
.
This file was automatically generated from template file mutablePrimitivePrimitiveMapFactory.stg.- Since:
- 6.0.
-
Method Summary
Modifier and Type Method Description MutableLongIntMap
empty()
<T> MutableLongIntMap
from(Iterable<T> iterable, LongFunction<? super T> keyFunction, IntFunction<? super T> valueFunction)
Creates anMutableLongIntMap
from anIterable<T>
by applyingkeyFunction
andvalueFunction
.MutableLongIntMap
of()
Same asempty()
.MutableLongIntMap
ofAll(LongIntMap map)
Same aswithAll(LongIntMap)
.MutableLongIntMap
ofInitialCapacity(int capacity)
Same asempty()
.MutableLongIntMap
with()
Same asempty()
.MutableLongIntMap
withAll(LongIntMap map)
MutableLongIntMap
withInitialCapacity(int capacity)
Same asempty()
.
-
Method Details
-
empty
MutableLongIntMap empty() -
of
MutableLongIntMap of()Same asempty()
. -
with
MutableLongIntMap with()Same asempty()
. -
ofInitialCapacity
Same asempty()
. but takes in an initial capacity -
withInitialCapacity
Same asempty()
. but takes in an initial capacity -
ofAll
Same aswithAll(LongIntMap)
. -
withAll
-
from
<T> MutableLongIntMap from(Iterable<T> iterable, LongFunction<? super T> keyFunction, IntFunction<? super T> valueFunction)Creates anMutableLongIntMap
from anIterable<T>
by applyingkeyFunction
andvalueFunction
.- Since:
- 10.0
-