Interface MutableByteFloatMapFactory
- All Known Implementing Classes:
MutableByteFloatMapFactoryImpl
public interface MutableByteFloatMapFactory
A factory which creates instances of type
MutableByteFloatMap.
This file was automatically generated from template file mutablePrimitivePrimitiveMapFactory.stg.- Since:
- 6.0.
-
Method Summary
Modifier and Type Method Description MutableByteFloatMapempty()<T> MutableByteFloatMapfrom(Iterable<T> iterable, ByteFunction<? super T> keyFunction, FloatFunction<? super T> valueFunction)Creates anMutableByteFloatMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.MutableByteFloatMapof()Same asempty().MutableByteFloatMapofAll(ByteFloatMap map)Same aswithAll(ByteFloatMap).MutableByteFloatMapofInitialCapacity(int capacity)Same asempty().MutableByteFloatMapwith()Same asempty().MutableByteFloatMapwithAll(ByteFloatMap map)MutableByteFloatMapwithInitialCapacity(int capacity)Same asempty().
-
Method Details
-
empty
MutableByteFloatMap empty() -
of
MutableByteFloatMap of()Same asempty(). -
with
MutableByteFloatMap with()Same asempty(). -
ofInitialCapacity
Same asempty(). but takes in an initial capacity -
withInitialCapacity
Same asempty(). but takes in an initial capacity -
ofAll
Same aswithAll(ByteFloatMap). -
withAll
-
from
<T> MutableByteFloatMap from(Iterable<T> iterable, ByteFunction<? super T> keyFunction, FloatFunction<? super T> valueFunction)Creates anMutableByteFloatMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.- Since:
- 10.0
-