Interface MutableLongIntMapFactory
- All Known Implementing Classes:
MutableLongIntMapFactoryImpl
public interface MutableLongIntMapFactory
A factory which creates instances of type
MutableLongIntMap.
This file was automatically generated from template file mutablePrimitivePrimitiveMapFactory.stg.- Since:
- 6.0.
-
Method Summary
Modifier and Type Method Description MutableLongIntMapempty()<T> MutableLongIntMapfrom(Iterable<T> iterable, LongFunction<? super T> keyFunction, IntFunction<? super T> valueFunction)Creates anMutableLongIntMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.MutableLongIntMapof()Same asempty().MutableLongIntMapofAll(LongIntMap map)Same aswithAll(LongIntMap).MutableLongIntMapofInitialCapacity(int capacity)Same asempty().MutableLongIntMapwith()Same asempty().MutableLongIntMapwithAll(LongIntMap map)MutableLongIntMapwithInitialCapacity(int capacity)Same asempty().
-
Method Details
-
empty
MutableLongIntMap empty() -
of
MutableLongIntMap of()Same asempty(). -
with
MutableLongIntMap with()Same asempty(). -
ofInitialCapacity
Same asempty(). but takes in an initial capacity -
withInitialCapacity
Same asempty(). but takes in an initial capacity -
ofAll
Same aswithAll(LongIntMap). -
withAll
-
from
<T> MutableLongIntMap from(Iterable<T> iterable, LongFunction<? super T> keyFunction, IntFunction<? super T> valueFunction)Creates anMutableLongIntMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.- Since:
- 10.0
-