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