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 MutableLongBooleanMapempty()<T> MutableLongBooleanMapfrom(Iterable<T> iterable, LongFunction<? super T> keyFunction, BooleanFunction<? super T> valueFunction)Creates anMutableLongBooleanMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.MutableLongBooleanMapof()Same asempty().MutableLongBooleanMapofAll(LongBooleanMap map)Same aswithAll(LongBooleanMap).MutableLongBooleanMapofInitialCapacity(int capacity)Same asempty().MutableLongBooleanMapwith()Same asempty().MutableLongBooleanMapwithAll(LongBooleanMap map)MutableLongBooleanMapwithInitialCapacity(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 anMutableLongBooleanMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.- Since:
- 10.0
-