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 MutableDoubleDoubleMap
empty()
<T> MutableDoubleDoubleMap
from(Iterable<T> iterable, DoubleFunction<? super T> keyFunction, DoubleFunction<? super T> valueFunction)
Creates anMutableDoubleDoubleMap
from anIterable<T>
by applyingkeyFunction
andvalueFunction
.MutableDoubleDoubleMap
of()
Same asempty()
.MutableDoubleDoubleMap
ofAll(DoubleDoubleMap map)
Same aswithAll(DoubleDoubleMap)
.MutableDoubleDoubleMap
ofInitialCapacity(int capacity)
Same asempty()
.MutableDoubleDoubleMap
with()
Same asempty()
.MutableDoubleDoubleMap
withAll(DoubleDoubleMap map)
MutableDoubleDoubleMap
withInitialCapacity(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 anMutableDoubleDoubleMap
from anIterable<T>
by applyingkeyFunction
andvalueFunction
.- Since:
- 10.0
-