Interface MutableDoubleByteMapFactory
- All Known Implementing Classes:
MutableDoubleByteMapFactoryImpl
public interface MutableDoubleByteMapFactory
A factory which creates instances of type
MutableDoubleByteMap.
This file was automatically generated from template file mutablePrimitivePrimitiveMapFactory.stg.- Since:
- 6.0.
-
Method Summary
Modifier and Type Method Description MutableDoubleByteMapempty()<T> MutableDoubleByteMapfrom(Iterable<T> iterable, DoubleFunction<? super T> keyFunction, ByteFunction<? super T> valueFunction)Creates anMutableDoubleByteMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.MutableDoubleByteMapof()Same asempty().MutableDoubleByteMapofAll(DoubleByteMap map)Same aswithAll(DoubleByteMap).MutableDoubleByteMapofInitialCapacity(int capacity)Same asempty().MutableDoubleByteMapwith()Same asempty().MutableDoubleByteMapwithAll(DoubleByteMap map)MutableDoubleByteMapwithInitialCapacity(int capacity)Same asempty().
-
Method Details
-
empty
MutableDoubleByteMap empty() -
of
MutableDoubleByteMap of()Same asempty(). -
with
MutableDoubleByteMap with()Same asempty(). -
ofInitialCapacity
Same asempty(). but takes in an initial capacity -
withInitialCapacity
Same asempty(). but takes in an initial capacity -
ofAll
Same aswithAll(DoubleByteMap). -
withAll
-
from
<T> MutableDoubleByteMap from(Iterable<T> iterable, DoubleFunction<? super T> keyFunction, ByteFunction<? super T> valueFunction)Creates anMutableDoubleByteMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.- Since:
- 10.0
-