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