Interface MutableFloatByteMapFactory
- All Known Implementing Classes:
MutableFloatByteMapFactoryImpl
public interface MutableFloatByteMapFactory
A factory which creates instances of type
MutableFloatByteMap.
This file was automatically generated from template file mutablePrimitivePrimitiveMapFactory.stg.- Since:
- 6.0.
-
Method Summary
Modifier and Type Method Description MutableFloatByteMapempty()<T> MutableFloatByteMapfrom(Iterable<T> iterable, FloatFunction<? super T> keyFunction, ByteFunction<? super T> valueFunction)Creates anMutableFloatByteMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.MutableFloatByteMapof()Same asempty().MutableFloatByteMapofAll(FloatByteMap map)Same aswithAll(FloatByteMap).MutableFloatByteMapofInitialCapacity(int capacity)Same asempty().MutableFloatByteMapwith()Same asempty().MutableFloatByteMapwithAll(FloatByteMap map)MutableFloatByteMapwithInitialCapacity(int capacity)Same asempty().
-
Method Details
-
empty
MutableFloatByteMap empty() -
of
MutableFloatByteMap of()Same asempty(). -
with
MutableFloatByteMap with()Same asempty(). -
ofInitialCapacity
Same asempty(). but takes in an initial capacity -
withInitialCapacity
Same asempty(). but takes in an initial capacity -
ofAll
Same aswithAll(FloatByteMap). -
withAll
-
from
<T> MutableFloatByteMap from(Iterable<T> iterable, FloatFunction<? super T> keyFunction, ByteFunction<? super T> valueFunction)Creates anMutableFloatByteMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.- Since:
- 10.0
-