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 MutableFloatLongMapempty()<T> MutableFloatLongMapfrom(Iterable<T> iterable, FloatFunction<? super T> keyFunction, LongFunction<? super T> valueFunction)Creates anMutableFloatLongMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.MutableFloatLongMapof()Same asempty().MutableFloatLongMapofAll(FloatLongMap map)Same aswithAll(FloatLongMap).MutableFloatLongMapofInitialCapacity(int capacity)Same asempty().MutableFloatLongMapwith()Same asempty().MutableFloatLongMapwithAll(FloatLongMap map)MutableFloatLongMapwithInitialCapacity(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 anMutableFloatLongMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.- Since:
- 10.0
-