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