Interface MutableIntBooleanMapFactory
- All Known Implementing Classes:
MutableIntBooleanMapFactoryImpl
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().ofAll(IntBooleanMap map) Same aswithAll(IntBooleanMap).ofInitialCapacity(int capacity) Same asempty().with()Same asempty().withAll(IntBooleanMap map) withInitialCapacity(int capacity) Same asempty().
-
Method Details
-
empty
MutableIntBooleanMap empty() -
of
MutableIntBooleanMap of()Same asempty(). -
with
MutableIntBooleanMap with()Same asempty(). -
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
-