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