Uses of Interface
com.hazelcast.function.ToDoubleFunctionEx
Package
Description
Serializable and exception-declaring variants of functional interfaces from
java.util.function
.Contains
AggregateOperation
and its several variants, as well
as a builder object for the aggregate operations.-
Uses of ToDoubleFunctionEx in com.hazelcast.function
Modifier and TypeMethodDescriptionstatic <T> ComparatorEx<T>
ComparatorEx.comparingDouble
(ToDoubleFunctionEx<? super T> toKeyFn) Serializable
variant ofjava.util.Comparator#comparingDouble(ToDoubleFunction)
.default ComparatorEx<T>
ComparatorEx.thenComparingDouble
(ToDoubleFunctionEx<? super T> toKeyFn) Serializable
variant ofjava.util.Comparator#thenComparingDouble(ToDoubleFunction)
. -
Uses of ToDoubleFunctionEx in com.hazelcast.jet.aggregate
Modifier and TypeMethodDescriptionstatic <T> AggregateOperation1<T,
LongDoubleAccumulator, Double> AggregateOperations.averagingDouble
(ToDoubleFunctionEx<? super T> getDoubleValueFn) Returns an aggregate operation that finds the arithmetic mean (aka.static <T> AggregateOperation1<T,
DoubleAccumulator, Double> AggregateOperations.summingDouble
(ToDoubleFunctionEx<? super T> getDoubleValueFn) Returns an aggregate operation that computes the sum of thedouble
values it obtains by applyinggetDoubleValueFn
to each item.