Interface MutableByteDoubleMapFactory
- All Known Implementing Classes:
MutableByteDoubleMapFactoryImpl
public interface MutableByteDoubleMapFactory
A factory which creates instances of type
MutableByteDoubleMap
.
This file was automatically generated from template file mutablePrimitivePrimitiveMapFactory.stg.- Since:
- 6.0.
-
Method Summary
Modifier and Type Method Description MutableByteDoubleMap
empty()
<T> MutableByteDoubleMap
from(Iterable<T> iterable, ByteFunction<? super T> keyFunction, DoubleFunction<? super T> valueFunction)
Creates anMutableByteDoubleMap
from anIterable<T>
by applyingkeyFunction
andvalueFunction
.MutableByteDoubleMap
of()
Same asempty()
.MutableByteDoubleMap
ofAll(ByteDoubleMap map)
Same aswithAll(ByteDoubleMap)
.MutableByteDoubleMap
ofInitialCapacity(int capacity)
Same asempty()
.MutableByteDoubleMap
with()
Same asempty()
.MutableByteDoubleMap
withAll(ByteDoubleMap map)
MutableByteDoubleMap
withInitialCapacity(int capacity)
Same asempty()
.
-
Method Details
-
empty
MutableByteDoubleMap empty() -
of
MutableByteDoubleMap of()Same asempty()
. -
with
MutableByteDoubleMap with()Same asempty()
. -
ofInitialCapacity
Same asempty()
. but takes in an initial capacity -
withInitialCapacity
Same asempty()
. but takes in an initial capacity -
ofAll
Same aswithAll(ByteDoubleMap)
. -
withAll
-
from
<T> MutableByteDoubleMap from(Iterable<T> iterable, ByteFunction<? super T> keyFunction, DoubleFunction<? super T> valueFunction)Creates anMutableByteDoubleMap
from anIterable<T>
by applyingkeyFunction
andvalueFunction
.- Since:
- 10.0
-