Interface MutableShortFloatMapFactory
- All Known Implementing Classes:
MutableShortFloatMapFactoryImpl
public interface MutableShortFloatMapFactory
A factory which creates instances of type
MutableShortFloatMap.
This file was automatically generated from template file mutablePrimitivePrimitiveMapFactory.stg.- Since:
- 6.0.
-
Method Summary
Modifier and Type Method Description MutableShortFloatMapempty()<T> MutableShortFloatMapfrom(Iterable<T> iterable, ShortFunction<? super T> keyFunction, FloatFunction<? super T> valueFunction)Creates anMutableShortFloatMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.MutableShortFloatMapof()Same asempty().MutableShortFloatMapofAll(ShortFloatMap map)Same aswithAll(ShortFloatMap).MutableShortFloatMapofInitialCapacity(int capacity)Same asempty().MutableShortFloatMapwith()Same asempty().MutableShortFloatMapwithAll(ShortFloatMap map)MutableShortFloatMapwithInitialCapacity(int capacity)Same asempty().
-
Method Details
-
empty
MutableShortFloatMap empty() -
of
MutableShortFloatMap of()Same asempty(). -
with
MutableShortFloatMap with()Same asempty(). -
ofInitialCapacity
Same asempty(). but takes in an initial capacity -
withInitialCapacity
Same asempty(). but takes in an initial capacity -
ofAll
Same aswithAll(ShortFloatMap). -
withAll
-
from
<T> MutableShortFloatMap from(Iterable<T> iterable, ShortFunction<? super T> keyFunction, FloatFunction<? super T> valueFunction)Creates anMutableShortFloatMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.- Since:
- 10.0
-