Interface MutableByteBooleanMapFactory
- All Known Implementing Classes:
MutableByteBooleanMapFactoryImpl
public interface MutableByteBooleanMapFactory
A factory which creates instances of type
MutableByteBooleanMap
.
This file was automatically generated from template file mutablePrimitivePrimitiveMapFactory.stg.- Since:
- 6.0.
-
Method Summary
Modifier and Type Method Description MutableByteBooleanMap
empty()
<T> MutableByteBooleanMap
from(Iterable<T> iterable, ByteFunction<? super T> keyFunction, BooleanFunction<? super T> valueFunction)
Creates anMutableByteBooleanMap
from anIterable<T>
by applyingkeyFunction
andvalueFunction
.MutableByteBooleanMap
of()
Same asempty()
.MutableByteBooleanMap
ofAll(ByteBooleanMap map)
Same aswithAll(ByteBooleanMap)
.MutableByteBooleanMap
ofInitialCapacity(int capacity)
Same asempty()
.MutableByteBooleanMap
with()
Same asempty()
.MutableByteBooleanMap
withAll(ByteBooleanMap map)
MutableByteBooleanMap
withInitialCapacity(int capacity)
Same asempty()
.
-
Method Details
-
empty
MutableByteBooleanMap empty() -
of
Same asempty()
. -
with
MutableByteBooleanMap with()Same asempty()
. -
ofInitialCapacity
Same asempty()
. but takes in an initial capacity -
withInitialCapacity
Same asempty()
. but takes in an initial capacity -
ofAll
Same aswithAll(ByteBooleanMap)
. -
withAll
-
from
<T> MutableByteBooleanMap from(Iterable<T> iterable, ByteFunction<? super T> keyFunction, BooleanFunction<? super T> valueFunction)Creates anMutableByteBooleanMap
from anIterable<T>
by applyingkeyFunction
andvalueFunction
.- Since:
- 10.0
-