Interface MutableDoubleDoubleMapFactory
- All Known Implementing Classes:
MutableDoubleDoubleMapFactoryImpl
public interface MutableDoubleDoubleMapFactory
A factory which creates instances of type
MutableDoubleDoubleMap.
This file was automatically generated from template file mutablePrimitivePrimitiveMapFactory.stg.- Since:
- 6.0.
-
Method Summary
Modifier and Type Method Description MutableDoubleDoubleMapempty()<T> MutableDoubleDoubleMapfrom(Iterable<T> iterable, DoubleFunction<? super T> keyFunction, DoubleFunction<? super T> valueFunction)Creates anMutableDoubleDoubleMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.MutableDoubleDoubleMapof()Same asempty().MutableDoubleDoubleMapofAll(DoubleDoubleMap map)Same aswithAll(DoubleDoubleMap).MutableDoubleDoubleMapofInitialCapacity(int capacity)Same asempty().MutableDoubleDoubleMapwith()Same asempty().MutableDoubleDoubleMapwithAll(DoubleDoubleMap map)MutableDoubleDoubleMapwithInitialCapacity(int capacity)Same asempty().
-
Method Details
-
empty
MutableDoubleDoubleMap empty() -
of
Same asempty(). -
with
MutableDoubleDoubleMap with()Same asempty(). -
ofInitialCapacity
Same asempty(). but takes in an initial capacity -
withInitialCapacity
Same asempty(). but takes in an initial capacity -
ofAll
Same aswithAll(DoubleDoubleMap). -
withAll
-
from
<T> MutableDoubleDoubleMap from(Iterable<T> iterable, DoubleFunction<? super T> keyFunction, DoubleFunction<? super T> valueFunction)Creates anMutableDoubleDoubleMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.- Since:
- 10.0
-