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