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 MutableDoubleLongMap
empty()
<T> MutableDoubleLongMap
from(Iterable<T> iterable, DoubleFunction<? super T> keyFunction, LongFunction<? super T> valueFunction)
Creates anMutableDoubleLongMap
from anIterable<T>
by applyingkeyFunction
andvalueFunction
.MutableDoubleLongMap
of()
Same asempty()
.MutableDoubleLongMap
ofAll(DoubleLongMap map)
Same aswithAll(DoubleLongMap)
.MutableDoubleLongMap
ofInitialCapacity(int capacity)
Same asempty()
.MutableDoubleLongMap
with()
Same asempty()
.MutableDoubleLongMap
withAll(DoubleLongMap map)
MutableDoubleLongMap
withInitialCapacity(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 anMutableDoubleLongMap
from anIterable<T>
by applyingkeyFunction
andvalueFunction
.- Since:
- 10.0
-