Interface MutableIntFloatMapFactory
public interface MutableIntFloatMapFactory
A factory which creates instances of type
MutableIntFloatMap.
This file was automatically generated from template file mutablePrimitivePrimitiveMapFactory.stg.- Since:
- 6.0.
-
Method Summary
Modifier and TypeMethodDescriptionempty()from(Iterable<T> iterable, IntFunction<? super T> keyFunction, FloatFunction<? super T> valueFunction) Creates anMutableIntFloatMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.of()Same asempty().default MutableIntFloatMapof(int key, float value) default MutableIntFloatMapof(int key1, float value1, int key2, float value2) default MutableIntFloatMapof(int key1, float value1, int key2, float value2, int key3, float value3) default MutableIntFloatMapof(int key1, float value1, int key2, float value2, int key3, float value3, int key4, float value4) ofAll(IntFloatMap map) Same aswithAll(IntFloatMap).ofInitialCapacity(int capacity) Same asempty(). but takes in an initial capacitywith()Same asempty().default MutableIntFloatMapwith(int key, float value) default MutableIntFloatMapwith(int key1, float value1, int key2, float value2) default MutableIntFloatMapwith(int key1, float value1, int key2, float value2, int key3, float value3) default MutableIntFloatMapwith(int key1, float value1, int key2, float value2, int key3, float value3, int key4, float value4) withAll(IntFloatMap map) withInitialCapacity(int capacity) Same asempty(). but takes in an initial capacity
-
Method Details
-
empty
MutableIntFloatMap empty() -
of
MutableIntFloatMap of()Same asempty(). -
with
MutableIntFloatMap with()Same asempty(). -
of
- Since:
- 11.1.
-
with
- Since:
- 11.1.
-
of
- Since:
- 11.1.
-
with
- Since:
- 11.1.
-
of
default MutableIntFloatMap of(int key1, float value1, int key2, float value2, int key3, float value3) - Since:
- 11.1.
-
with
default MutableIntFloatMap with(int key1, float value1, int key2, float value2, int key3, float value3) - Since:
- 11.1.
-
of
default MutableIntFloatMap of(int key1, float value1, int key2, float value2, int key3, float value3, int key4, float value4) - Since:
- 11.1.
-
with
default MutableIntFloatMap with(int key1, float value1, int key2, float value2, int key3, float value3, int key4, float 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(IntFloatMap). -
withAll
-
from
<T> MutableIntFloatMap from(Iterable<T> iterable, IntFunction<? super T> keyFunction, FloatFunction<? super T> valueFunction) Creates anMutableIntFloatMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.- Since:
- 10.0
-