Interface MutableLongBooleanMapFactory
- All Known Implementing Classes:
MutableLongBooleanMapFactoryImpl
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 Type Method Description MutableLongBooleanMap
empty()
<T> MutableLongBooleanMap
from(Iterable<T> iterable, LongFunction<? super T> keyFunction, BooleanFunction<? super T> valueFunction)
Creates anMutableLongBooleanMap
from anIterable<T>
by applyingkeyFunction
andvalueFunction
.MutableLongBooleanMap
of()
Same asempty()
.MutableLongBooleanMap
ofAll(LongBooleanMap map)
Same aswithAll(LongBooleanMap)
.MutableLongBooleanMap
ofInitialCapacity(int capacity)
Same asempty()
.MutableLongBooleanMap
with()
Same asempty()
.MutableLongBooleanMap
withAll(LongBooleanMap map)
MutableLongBooleanMap
withInitialCapacity(int capacity)
Same asempty()
.
-
Method Details
-
empty
MutableLongBooleanMap empty() -
of
Same asempty()
. -
with
MutableLongBooleanMap with()Same asempty()
. -
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 anMutableLongBooleanMap
from anIterable<T>
by applyingkeyFunction
andvalueFunction
.- Since:
- 10.0
-