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