Interface MutableCharFloatMapFactory
- All Known Implementing Classes:
MutableCharFloatMapFactoryImpl
public interface MutableCharFloatMapFactory
A factory which creates instances of type
MutableCharFloatMap.
This file was automatically generated from template file mutablePrimitivePrimitiveMapFactory.stg.- Since:
- 6.0.
-
Method Summary
Modifier and Type Method Description MutableCharFloatMapempty()<T> MutableCharFloatMapfrom(Iterable<T> iterable, CharFunction<? super T> keyFunction, FloatFunction<? super T> valueFunction)Creates anMutableCharFloatMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.MutableCharFloatMapof()Same asempty().MutableCharFloatMapofAll(CharFloatMap map)Same aswithAll(CharFloatMap).MutableCharFloatMapofInitialCapacity(int capacity)Same asempty().MutableCharFloatMapwith()Same asempty().MutableCharFloatMapwithAll(CharFloatMap map)MutableCharFloatMapwithInitialCapacity(int capacity)Same asempty().
-
Method Details
-
empty
MutableCharFloatMap empty() -
of
MutableCharFloatMap of()Same asempty(). -
with
MutableCharFloatMap with()Same asempty(). -
ofInitialCapacity
Same asempty(). but takes in an initial capacity -
withInitialCapacity
Same asempty(). but takes in an initial capacity -
ofAll
Same aswithAll(CharFloatMap). -
withAll
-
from
<T> MutableCharFloatMap from(Iterable<T> iterable, CharFunction<? super T> keyFunction, FloatFunction<? super T> valueFunction)Creates anMutableCharFloatMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.- Since:
- 10.0
-