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 MutableByteDoubleMapempty()<T> MutableByteDoubleMapfrom(Iterable<T> iterable, ByteFunction<? super T> keyFunction, DoubleFunction<? super T> valueFunction)Creates anMutableByteDoubleMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.MutableByteDoubleMapof()Same asempty().MutableByteDoubleMapofAll(ByteDoubleMap map)Same aswithAll(ByteDoubleMap).MutableByteDoubleMapofInitialCapacity(int capacity)Same asempty().MutableByteDoubleMapwith()Same asempty().MutableByteDoubleMapwithAll(ByteDoubleMap map)MutableByteDoubleMapwithInitialCapacity(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 anMutableByteDoubleMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.- Since:
- 10.0
-