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 MutableDoubleCharMapempty()<T> MutableDoubleCharMapfrom(Iterable<T> iterable, DoubleFunction<? super T> keyFunction, CharFunction<? super T> valueFunction)Creates anMutableDoubleCharMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.MutableDoubleCharMapof()Same asempty().MutableDoubleCharMapofAll(DoubleCharMap map)Same aswithAll(DoubleCharMap).MutableDoubleCharMapofInitialCapacity(int capacity)Same asempty().MutableDoubleCharMapwith()Same asempty().MutableDoubleCharMapwithAll(DoubleCharMap map)MutableDoubleCharMapwithInitialCapacity(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 anMutableDoubleCharMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.- Since:
- 10.0
-