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 MutableFloatIntMapempty()<T> MutableFloatIntMapfrom(Iterable<T> iterable, FloatFunction<? super T> keyFunction, IntFunction<? super T> valueFunction)Creates anMutableFloatIntMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.MutableFloatIntMapof()Same asempty().MutableFloatIntMapofAll(FloatIntMap map)Same aswithAll(FloatIntMap).MutableFloatIntMapofInitialCapacity(int capacity)Same asempty().MutableFloatIntMapwith()Same asempty().MutableFloatIntMapwithAll(FloatIntMap map)MutableFloatIntMapwithInitialCapacity(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 anMutableFloatIntMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.- Since:
- 10.0
-