Class MutableDoubleIntMapFactoryImpl
java.lang.Object
org.eclipse.collections.impl.map.mutable.primitive.MutableDoubleIntMapFactoryImpl
- All Implemented Interfaces:
MutableDoubleIntMapFactory
MutableDoubleIntMapFactoryImpl is a factory implementation which creates instances of type
MutableDoubleIntMap
.
This file was automatically generated from template file mutablePrimitivePrimitiveMapFactoryImpl.stg.- Since:
- 6.0.
-
Field Summary
Fields -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionempty()
from
(Iterable<T> iterable, DoubleFunction<? super T> keyFunction, IntFunction<? super T> valueFunction) Creates anMutableDoubleIntMap
from anIterable<T>
by applyingkeyFunction
andvalueFunction
.of()
Same asMutableDoubleIntMapFactory.empty()
.of
(double key, int value) of
(double key1, int value1, double key2, int value2) of
(double key1, int value1, double key2, int value2, double key3, int value3) of
(double key1, int value1, double key2, int value2, double key3, int value3, double key4, int value4) ofAll
(DoubleIntMap map) ofInitialCapacity
(int capacity) Same asMutableDoubleIntMapFactory.empty()
.with()
Same asMutableDoubleIntMapFactory.empty()
.with
(double key, int value) with
(double key1, int value1, double key2, int value2) with
(double key1, int value1, double key2, int value2, double key3, int value3) with
(double key1, int value1, double key2, int value2, double key3, int value3, double key4, int value4) withAll
(DoubleIntMap map) withInitialCapacity
(int capacity) Same asMutableDoubleIntMapFactory.empty()
.
-
Field Details
-
INSTANCE
-
-
Constructor Details
-
MutableDoubleIntMapFactoryImpl
public MutableDoubleIntMapFactoryImpl()
-
-
Method Details
-
empty
- Specified by:
empty
in interfaceMutableDoubleIntMapFactory
-
of
Description copied from interface:MutableDoubleIntMapFactory
Same asMutableDoubleIntMapFactory.empty()
.- Specified by:
of
in interfaceMutableDoubleIntMapFactory
-
with
Description copied from interface:MutableDoubleIntMapFactory
Same asMutableDoubleIntMapFactory.empty()
.- Specified by:
with
in interfaceMutableDoubleIntMapFactory
-
with
- Specified by:
with
in interfaceMutableDoubleIntMapFactory
-
of
- Specified by:
of
in interfaceMutableDoubleIntMapFactory
-
of
- Specified by:
of
in interfaceMutableDoubleIntMapFactory
-
with
- Specified by:
with
in interfaceMutableDoubleIntMapFactory
-
of
public MutableDoubleIntMap of(double key1, int value1, double key2, int value2, double key3, int value3) - Specified by:
of
in interfaceMutableDoubleIntMapFactory
-
with
public MutableDoubleIntMap with(double key1, int value1, double key2, int value2, double key3, int value3) - Specified by:
with
in interfaceMutableDoubleIntMapFactory
-
of
public MutableDoubleIntMap of(double key1, int value1, double key2, int value2, double key3, int value3, double key4, int value4) - Specified by:
of
in interfaceMutableDoubleIntMapFactory
-
with
public MutableDoubleIntMap with(double key1, int value1, double key2, int value2, double key3, int value3, double key4, int value4) - Specified by:
with
in interfaceMutableDoubleIntMapFactory
-
ofInitialCapacity
Description copied from interface:MutableDoubleIntMapFactory
Same asMutableDoubleIntMapFactory.empty()
. but takes in an initial capacity- Specified by:
ofInitialCapacity
in interfaceMutableDoubleIntMapFactory
-
withInitialCapacity
Description copied from interface:MutableDoubleIntMapFactory
Same asMutableDoubleIntMapFactory.empty()
. but takes in an initial capacity- Specified by:
withInitialCapacity
in interfaceMutableDoubleIntMapFactory
-
ofAll
Description copied from interface:MutableDoubleIntMapFactory
- Specified by:
ofAll
in interfaceMutableDoubleIntMapFactory
-
withAll
- Specified by:
withAll
in interfaceMutableDoubleIntMapFactory
-
from
public <T> MutableDoubleIntMap from(Iterable<T> iterable, DoubleFunction<? super T> keyFunction, IntFunction<? super T> valueFunction) Description copied from interface:MutableDoubleIntMapFactory
Creates anMutableDoubleIntMap
from anIterable<T>
by applyingkeyFunction
andvalueFunction
.- Specified by:
from
in interfaceMutableDoubleIntMapFactory
-