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 Type Method Description MutableIntBooleanMapempty()<T> MutableIntBooleanMapfrom(Iterable<T> iterable, IntFunction<? super T> keyFunction, BooleanFunction<? super T> valueFunction)Creates anMutableIntBooleanMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.MutableIntBooleanMapof()Same asempty().MutableIntBooleanMapofAll(IntBooleanMap map)Same aswithAll(IntBooleanMap).MutableIntBooleanMapofInitialCapacity(int capacity)Same asempty().MutableIntBooleanMapwith()Same asempty().MutableIntBooleanMapwithAll(IntBooleanMap map)MutableIntBooleanMapwithInitialCapacity(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
-