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