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