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