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 MutableLongDoubleMap
empty()
<T> MutableLongDoubleMap
from(Iterable<T> iterable, LongFunction<? super T> keyFunction, DoubleFunction<? super T> valueFunction)
Creates anMutableLongDoubleMap
from anIterable<T>
by applyingkeyFunction
andvalueFunction
.MutableLongDoubleMap
of()
Same asempty()
.MutableLongDoubleMap
ofAll(LongDoubleMap map)
Same aswithAll(LongDoubleMap)
.MutableLongDoubleMap
ofInitialCapacity(int capacity)
Same asempty()
.MutableLongDoubleMap
with()
Same asempty()
.MutableLongDoubleMap
withAll(LongDoubleMap map)
MutableLongDoubleMap
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 anMutableLongDoubleMap
from anIterable<T>
by applyingkeyFunction
andvalueFunction
.- Since:
- 10.0
-