Interface ImmutableDoubleBooleanMapFactory
public interface ImmutableDoubleBooleanMapFactory
A factory which creates instances of type
ImmutableDoubleBooleanMap.
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, BooleanFunction<? super T> valueFunction) Creates anImmutableDoubleBooleanMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.of()Same asempty().of(double key, boolean value) Same aswith(double, boolean).ofAll(DoubleBooleanMap map) Same aswithAll(DoubleBooleanMap).with()Same asempty().with(double key, boolean value) withAll(DoubleBooleanMap map)
-
Method Details
-
empty
ImmutableDoubleBooleanMap empty()- Since:
- 6.0
-
of
Same asempty(). -
with
ImmutableDoubleBooleanMap with()Same asempty(). -
of
Same aswith(double, boolean). -
with
-
ofAll
Same aswithAll(DoubleBooleanMap). -
withAll
-
from
<T> ImmutableDoubleBooleanMap from(Iterable<T> iterable, DoubleFunction<? super T> keyFunction, BooleanFunction<? super T> valueFunction) Creates anImmutableDoubleBooleanMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.- Since:
- 10.0
-