Interface MutableIntBooleanMapFactory
public interface MutableIntBooleanMapFactory
A factory which creates instances of type
MutableIntBooleanMap.
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, BooleanFunction<? super T> valueFunction) Creates anMutableIntBooleanMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.of()Same asempty().default MutableIntBooleanMapof(int key, boolean value) default MutableIntBooleanMapof(int key1, boolean value1, int key2, boolean value2) default MutableIntBooleanMapof(int key1, boolean value1, int key2, boolean value2, int key3, boolean value3) default MutableIntBooleanMapof(int key1, boolean value1, int key2, boolean value2, int key3, boolean value3, int key4, boolean value4) ofAll(IntBooleanMap map) Same aswithAll(IntBooleanMap).ofInitialCapacity(int capacity) Same asempty(). but takes in an initial capacitywith()Same asempty().default MutableIntBooleanMapwith(int key, boolean value) default MutableIntBooleanMapwith(int key1, boolean value1, int key2, boolean value2) default MutableIntBooleanMapwith(int key1, boolean value1, int key2, boolean value2, int key3, boolean value3) default MutableIntBooleanMapwith(int key1, boolean value1, int key2, boolean value2, int key3, boolean value3, int key4, boolean value4) withAll(IntBooleanMap map) withInitialCapacity(int capacity) Same asempty(). but takes in an initial capacity
-
Method Details
-
empty
MutableIntBooleanMap empty() -
of
MutableIntBooleanMap of()Same asempty(). -
with
MutableIntBooleanMap with()Same asempty(). -
of
- Since:
- 11.1.
-
with
- Since:
- 11.1.
-
of
- Since:
- 11.1.
-
with
- Since:
- 11.1.
-
of
default MutableIntBooleanMap of(int key1, boolean value1, int key2, boolean value2, int key3, boolean value3) - Since:
- 11.1.
-
with
default MutableIntBooleanMap with(int key1, boolean value1, int key2, boolean value2, int key3, boolean value3) - Since:
- 11.1.
-
of
default MutableIntBooleanMap of(int key1, boolean value1, int key2, boolean value2, int key3, boolean value3, int key4, boolean value4) - Since:
- 11.1.
-
with
default MutableIntBooleanMap with(int key1, boolean value1, int key2, boolean value2, int key3, boolean value3, int key4, boolean 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(IntBooleanMap). -
withAll
-
from
<T> MutableIntBooleanMap from(Iterable<T> iterable, IntFunction<? super T> keyFunction, BooleanFunction<? super T> valueFunction) Creates anMutableIntBooleanMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.- Since:
- 10.0
-