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