Interface MutableDoubleIntMapFactory
- All Known Implementing Classes:
MutableDoubleIntMapFactoryImpl
public interface MutableDoubleIntMapFactory
A factory which creates instances of type
MutableDoubleIntMap
.
This file was automatically generated from template file mutablePrimitivePrimitiveMapFactory.stg.- Since:
- 6.0.
-
Method Summary
Modifier and Type Method Description MutableDoubleIntMap
empty()
<T> MutableDoubleIntMap
from(Iterable<T> iterable, DoubleFunction<? super T> keyFunction, IntFunction<? super T> valueFunction)
Creates anMutableDoubleIntMap
from anIterable<T>
by applyingkeyFunction
andvalueFunction
.MutableDoubleIntMap
of()
Same asempty()
.MutableDoubleIntMap
ofAll(DoubleIntMap map)
Same aswithAll(DoubleIntMap)
.MutableDoubleIntMap
ofInitialCapacity(int capacity)
Same asempty()
.MutableDoubleIntMap
with()
Same asempty()
.MutableDoubleIntMap
withAll(DoubleIntMap map)
MutableDoubleIntMap
withInitialCapacity(int capacity)
Same asempty()
.
-
Method Details
-
empty
MutableDoubleIntMap empty() -
of
MutableDoubleIntMap of()Same asempty()
. -
with
MutableDoubleIntMap with()Same asempty()
. -
ofInitialCapacity
Same asempty()
. but takes in an initial capacity -
withInitialCapacity
Same asempty()
. but takes in an initial capacity -
ofAll
Same aswithAll(DoubleIntMap)
. -
withAll
-
from
<T> MutableDoubleIntMap from(Iterable<T> iterable, DoubleFunction<? super T> keyFunction, IntFunction<? super T> valueFunction)Creates anMutableDoubleIntMap
from anIterable<T>
by applyingkeyFunction
andvalueFunction
.- Since:
- 10.0
-