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 MutableIntBooleanMap
empty()
<T> MutableIntBooleanMap
from(Iterable<T> iterable, IntFunction<? super T> keyFunction, BooleanFunction<? super T> valueFunction)
Creates anMutableIntBooleanMap
from anIterable<T>
by applyingkeyFunction
andvalueFunction
.MutableIntBooleanMap
of()
Same asempty()
.MutableIntBooleanMap
ofAll(IntBooleanMap map)
Same aswithAll(IntBooleanMap)
.MutableIntBooleanMap
ofInitialCapacity(int capacity)
Same asempty()
.MutableIntBooleanMap
with()
Same asempty()
.MutableIntBooleanMap
withAll(IntBooleanMap map)
MutableIntBooleanMap
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 anMutableIntBooleanMap
from anIterable<T>
by applyingkeyFunction
andvalueFunction
.- Since:
- 10.0
-