Interface ImmutableLongDoubleMapFactory
- All Known Implementing Classes:
ImmutableLongDoubleMapFactoryImpl
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 Type Method Description ImmutableLongDoubleMap
empty()
<T> ImmutableLongDoubleMap
from(Iterable<T> iterable, LongFunction<? super T> keyFunction, DoubleFunction<? super T> valueFunction)
Creates anImmutableLongDoubleMap
from anIterable<T>
by applyingkeyFunction
andvalueFunction
.ImmutableLongDoubleMap
of()
Same asempty()
.ImmutableLongDoubleMap
of(long key, double value)
Same aswith(long, double)
.ImmutableLongDoubleMap
ofAll(LongDoubleMap map)
Same aswithAll(LongDoubleMap)
.ImmutableLongDoubleMap
with()
Same asempty()
.ImmutableLongDoubleMap
with(long key, double value)
ImmutableLongDoubleMap
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 anImmutableLongDoubleMap
from anIterable<T>
by applyingkeyFunction
andvalueFunction
.- Since:
- 10.0
-