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 MutableCharDoubleMapempty()<T> MutableCharDoubleMapfrom(Iterable<T> iterable, CharFunction<? super T> keyFunction, DoubleFunction<? super T> valueFunction)Creates anMutableCharDoubleMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.MutableCharDoubleMapof()Same asempty().MutableCharDoubleMapofAll(CharDoubleMap map)Same aswithAll(CharDoubleMap).MutableCharDoubleMapofInitialCapacity(int capacity)Same asempty().MutableCharDoubleMapwith()Same asempty().MutableCharDoubleMapwithAll(CharDoubleMap map)MutableCharDoubleMapwithInitialCapacity(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 anMutableCharDoubleMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.- Since:
- 10.0
-