Interface MutableDoubleLongMapFactory
- All Known Implementing Classes:
MutableDoubleLongMapFactoryImpl
public interface MutableDoubleLongMapFactory
A factory which creates instances of type
MutableDoubleLongMap.
This file was automatically generated from template file mutablePrimitivePrimitiveMapFactory.stg.- Since:
- 6.0.
-
Method Summary
Modifier and Type Method Description MutableDoubleLongMapempty()<T> MutableDoubleLongMapfrom(Iterable<T> iterable, DoubleFunction<? super T> keyFunction, LongFunction<? super T> valueFunction)Creates anMutableDoubleLongMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.MutableDoubleLongMapof()Same asempty().MutableDoubleLongMapofAll(DoubleLongMap map)Same aswithAll(DoubleLongMap).MutableDoubleLongMapofInitialCapacity(int capacity)Same asempty().MutableDoubleLongMapwith()Same asempty().MutableDoubleLongMapwithAll(DoubleLongMap map)MutableDoubleLongMapwithInitialCapacity(int capacity)Same asempty().
-
Method Details
-
empty
MutableDoubleLongMap empty() -
of
MutableDoubleLongMap of()Same asempty(). -
with
MutableDoubleLongMap with()Same asempty(). -
ofInitialCapacity
Same asempty(). but takes in an initial capacity -
withInitialCapacity
Same asempty(). but takes in an initial capacity -
ofAll
Same aswithAll(DoubleLongMap). -
withAll
-
from
<T> MutableDoubleLongMap from(Iterable<T> iterable, DoubleFunction<? super T> keyFunction, LongFunction<? super T> valueFunction)Creates anMutableDoubleLongMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.- Since:
- 10.0
-