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