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