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