Interface MutableDoubleIntMapFactory
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 TypeMethodDescriptionempty()from(Iterable<T> iterable, DoubleFunction<? super T> keyFunction, IntFunction<? super T> valueFunction) Creates anMutableDoubleIntMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.of()Same asempty().default MutableDoubleIntMapof(double key, int value) default MutableDoubleIntMapof(double key1, int value1, double key2, int value2) default MutableDoubleIntMapof(double key1, int value1, double key2, int value2, double key3, int value3) default MutableDoubleIntMapof(double key1, int value1, double key2, int value2, double key3, int value3, double key4, int value4) ofAll(DoubleIntMap map) Same aswithAll(DoubleIntMap).ofInitialCapacity(int capacity) Same asempty(). but takes in an initial capacitywith()Same asempty().default MutableDoubleIntMapwith(double key, int value) default MutableDoubleIntMapwith(double key1, int value1, double key2, int value2) default MutableDoubleIntMapwith(double key1, int value1, double key2, int value2, double key3, int value3) default MutableDoubleIntMapwith(double key1, int value1, double key2, int value2, double key3, int value3, double key4, int value4) withAll(DoubleIntMap map) withInitialCapacity(int capacity) Same asempty(). but takes in an initial capacity
-
Method Details
-
empty
MutableDoubleIntMap empty() -
of
MutableDoubleIntMap of()Same asempty(). -
with
MutableDoubleIntMap with()Same asempty(). -
of
- Since:
- 11.1.
-
with
- Since:
- 11.1.
-
of
- Since:
- 11.1.
-
with
- Since:
- 11.1.
-
of
default MutableDoubleIntMap of(double key1, int value1, double key2, int value2, double key3, int value3) - Since:
- 11.1.
-
with
default MutableDoubleIntMap with(double key1, int value1, double key2, int value2, double key3, int value3) - Since:
- 11.1.
-
of
default MutableDoubleIntMap of(double key1, int value1, double key2, int value2, double key3, int value3, double key4, int value4) - Since:
- 11.1.
-
with
default MutableDoubleIntMap with(double key1, int value1, double key2, int value2, double key3, int value3, double key4, int value4) - Since:
- 11.1.
-
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 anMutableDoubleIntMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.- Since:
- 10.0
-