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