Interface ImmutableDoubleDoubleMapFactory
public interface ImmutableDoubleDoubleMapFactory
A factory which creates instances of type
ImmutableDoubleDoubleMap.
This file was automatically generated from template file immutablePrimitivePrimitiveMapFactory.stg.- Since:
- 4.0.
-
Method Summary
Modifier and TypeMethodDescriptionempty()from(Iterable<T> iterable, DoubleFunction<? super T> keyFunction, DoubleFunction<? super T> valueFunction) Creates anImmutableDoubleDoubleMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.of()Same asempty().of(double key, double value) Same aswith(double, double).ofAll(DoubleDoubleMap map) Same aswithAll(DoubleDoubleMap).with()Same asempty().with(double key, double value) withAll(DoubleDoubleMap map)
-
Method Details
-
empty
ImmutableDoubleDoubleMap empty()- Since:
- 6.0
-
of
Same asempty(). -
with
ImmutableDoubleDoubleMap with()Same asempty(). -
of
Same aswith(double, double). -
with
-
ofAll
Same aswithAll(DoubleDoubleMap). -
withAll
-
from
<T> ImmutableDoubleDoubleMap from(Iterable<T> iterable, DoubleFunction<? super T> keyFunction, DoubleFunction<? super T> valueFunction) Creates anImmutableDoubleDoubleMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.- Since:
- 10.0
-