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 Type Method Description MutableLongDoubleMapempty()<T> MutableLongDoubleMapfrom(Iterable<T> iterable, LongFunction<? super T> keyFunction, DoubleFunction<? super T> valueFunction)Creates anMutableLongDoubleMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.MutableLongDoubleMapof()Same asempty().MutableLongDoubleMapofAll(LongDoubleMap map)Same aswithAll(LongDoubleMap).MutableLongDoubleMapofInitialCapacity(int capacity)Same asempty().MutableLongDoubleMapwith()Same asempty().MutableLongDoubleMapwithAll(LongDoubleMap map)MutableLongDoubleMapwithInitialCapacity(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
-