Interface MutableLongDoubleMapFactory
- All Known Implementing Classes:
MutableLongDoubleMapFactoryImpl
public interface MutableLongDoubleMapFactory
A factory which creates instances of type
MutableLongDoubleMap.
This file was automatically generated from template file mutablePrimitivePrimitiveMapFactory.stg.- Since:
- 6.0.
-
Method Summary
Modifier and TypeMethodDescriptionempty()from(Iterable<T> iterable, LongFunction<? super T> keyFunction, DoubleFunction<? super T> valueFunction) Creates anMutableLongDoubleMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.of()Same asempty().ofAll(LongDoubleMap map) Same aswithAll(LongDoubleMap).ofInitialCapacity(int capacity) Same asempty().with()Same asempty().withAll(LongDoubleMap map) withInitialCapacity(int capacity) Same asempty().
-
Method Details
-
empty
MutableLongDoubleMap empty() -
of
MutableLongDoubleMap of()Same asempty(). -
with
MutableLongDoubleMap with()Same asempty(). -
ofInitialCapacity
Same asempty(). but takes in an initial capacity -
withInitialCapacity
Same asempty(). but takes in an initial capacity -
ofAll
Same aswithAll(LongDoubleMap). -
withAll
-
from
<T> MutableLongDoubleMap from(Iterable<T> iterable, LongFunction<? super T> keyFunction, DoubleFunction<? super T> valueFunction) Creates anMutableLongDoubleMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.- Since:
- 10.0
-