Uses of Interface
com.gengoai.function.SerializableDoubleBinaryOperator
-
Packages that use SerializableDoubleBinaryOperator Package Description com.gengoai.function Checked and Serializable versions of Java 8's functional elements.com.gengoai.stream A unified stream interface that can work across Java and Spark streams.com.gengoai.stream.local -
-
Uses of SerializableDoubleBinaryOperator in com.gengoai.function
Methods in com.gengoai.function that return SerializableDoubleBinaryOperator Modifier and Type Method Description static SerializableDoubleBinaryOperator
Unchecked. doubleBinaryOperator(CheckedDoubleBinaryOperator checked)
Generates a version of DoubleBinaryOperator that will capture exceptions and rethrow them as runtime exceptionsMethods in com.gengoai.function with parameters of type SerializableDoubleBinaryOperator Modifier and Type Method Description static DoubleBinaryOperator
Serialized. doubleBinaryOperator(SerializableDoubleBinaryOperator serialized)
Generates a serialized version of DoubleBinaryOperator -
Uses of SerializableDoubleBinaryOperator in com.gengoai.stream
Methods in com.gengoai.stream with parameters of type SerializableDoubleBinaryOperator Modifier and Type Method Description double
MDoubleStream. reduce(double zeroValue, SerializableDoubleBinaryOperator operator)
Performs a reduction on the elements of this stream using the given binary operator.OptionalDouble
MDoubleStream. reduce(SerializableDoubleBinaryOperator operator)
Performs a reduction on the elements of this stream using the given binary operator. -
Uses of SerializableDoubleBinaryOperator in com.gengoai.stream.local
Methods in com.gengoai.stream.local with parameters of type SerializableDoubleBinaryOperator Modifier and Type Method Description double
LocalMDoubleStream. reduce(double zeroValue, @NonNull SerializableDoubleBinaryOperator operator)
OptionalDouble
LocalMDoubleStream. reduce(@NonNull SerializableDoubleBinaryOperator operator)
-