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