Interface MutableDoubleShortMapFactory
- All Known Implementing Classes:
MutableDoubleShortMapFactoryImpl
public interface MutableDoubleShortMapFactory
A factory which creates instances of type
MutableDoubleShortMap
.
This file was automatically generated from template file mutablePrimitivePrimitiveMapFactory.stg.- Since:
- 6.0.
-
Method Summary
Modifier and Type Method Description MutableDoubleShortMap
empty()
<T> MutableDoubleShortMap
from(Iterable<T> iterable, DoubleFunction<? super T> keyFunction, ShortFunction<? super T> valueFunction)
Creates anMutableDoubleShortMap
from anIterable<T>
by applyingkeyFunction
andvalueFunction
.MutableDoubleShortMap
of()
Same asempty()
.MutableDoubleShortMap
ofAll(DoubleShortMap map)
Same aswithAll(DoubleShortMap)
.MutableDoubleShortMap
ofInitialCapacity(int capacity)
Same asempty()
.MutableDoubleShortMap
with()
Same asempty()
.MutableDoubleShortMap
withAll(DoubleShortMap map)
MutableDoubleShortMap
withInitialCapacity(int capacity)
Same asempty()
.
-
Method Details
-
empty
MutableDoubleShortMap empty() -
of
Same asempty()
. -
with
MutableDoubleShortMap with()Same asempty()
. -
ofInitialCapacity
Same asempty()
. but takes in an initial capacity -
withInitialCapacity
Same asempty()
. but takes in an initial capacity -
ofAll
Same aswithAll(DoubleShortMap)
. -
withAll
-
from
<T> MutableDoubleShortMap from(Iterable<T> iterable, DoubleFunction<? super T> keyFunction, ShortFunction<? super T> valueFunction)Creates anMutableDoubleShortMap
from anIterable<T>
by applyingkeyFunction
andvalueFunction
.- Since:
- 10.0
-