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 MutableByteFloatMap
empty()
<T> MutableByteFloatMap
from(Iterable<T> iterable, ByteFunction<? super T> keyFunction, FloatFunction<? super T> valueFunction)
Creates anMutableByteFloatMap
from anIterable<T>
by applyingkeyFunction
andvalueFunction
.MutableByteFloatMap
of()
Same asempty()
.MutableByteFloatMap
ofAll(ByteFloatMap map)
Same aswithAll(ByteFloatMap)
.MutableByteFloatMap
ofInitialCapacity(int capacity)
Same asempty()
.MutableByteFloatMap
with()
Same asempty()
.MutableByteFloatMap
withAll(ByteFloatMap map)
MutableByteFloatMap
withInitialCapacity(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 anMutableByteFloatMap
from anIterable<T>
by applyingkeyFunction
andvalueFunction
.- Since:
- 10.0
-