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