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