Interface MutableCharLongMapFactory
- All Known Implementing Classes:
MutableCharLongMapFactoryImpl
public interface MutableCharLongMapFactory
A factory which creates instances of type
MutableCharLongMap.
This file was automatically generated from template file mutablePrimitivePrimitiveMapFactory.stg.- Since:
- 6.0.
-
Method Summary
Modifier and Type Method Description MutableCharLongMapempty()<T> MutableCharLongMapfrom(Iterable<T> iterable, CharFunction<? super T> keyFunction, LongFunction<? super T> valueFunction)Creates anMutableCharLongMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.MutableCharLongMapof()Same asempty().MutableCharLongMapofAll(CharLongMap map)Same aswithAll(CharLongMap).MutableCharLongMapofInitialCapacity(int capacity)Same asempty().MutableCharLongMapwith()Same asempty().MutableCharLongMapwithAll(CharLongMap map)MutableCharLongMapwithInitialCapacity(int capacity)Same asempty().
-
Method Details
-
empty
MutableCharLongMap empty() -
of
MutableCharLongMap of()Same asempty(). -
with
MutableCharLongMap with()Same asempty(). -
ofInitialCapacity
Same asempty(). but takes in an initial capacity -
withInitialCapacity
Same asempty(). but takes in an initial capacity -
ofAll
Same aswithAll(CharLongMap). -
withAll
-
from
<T> MutableCharLongMap from(Iterable<T> iterable, CharFunction<? super T> keyFunction, LongFunction<? super T> valueFunction)Creates anMutableCharLongMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.- Since:
- 10.0
-