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