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