Uses of Interface
com.gengoai.function.SerializableDoubleFunction
-
Packages that use SerializableDoubleFunction 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 SerializableDoubleFunction in com.gengoai.function
Methods in com.gengoai.function that return SerializableDoubleFunction Modifier and Type Method Description static <R> SerializableDoubleFunction<R>
Unchecked. doubleFunction(CheckedDoubleFunction<R> checked)
Generates a version of DoubleFunction that will capture exceptions and rethrow them as runtime exceptionsMethods in com.gengoai.function with parameters of type SerializableDoubleFunction Modifier and Type Method Description static <R> DoubleFunction<R>
Serialized. doubleFunction(SerializableDoubleFunction<R> serialized)
Generates a serialized version of DoubleFunction -
Uses of SerializableDoubleFunction in com.gengoai.stream
Methods in com.gengoai.stream with parameters of type SerializableDoubleFunction Modifier and Type Method Description MDoubleStream
MDoubleStream. flatMap(SerializableDoubleFunction<double[]> mapper)
Maps the doubles in this stream to one or more new doubles using the given function.<T> MStream<T>
MDoubleStream. mapToObj(SerializableDoubleFunction<? extends T> function)
Maps the doubles in the stream to objects using the given function -
Uses of SerializableDoubleFunction in com.gengoai.stream.local
Methods in com.gengoai.stream.local with parameters of type SerializableDoubleFunction Modifier and Type Method Description MDoubleStream
LocalMDoubleStream. flatMap(@NonNull SerializableDoubleFunction<double[]> mapper)
<T> MStream<T>
LocalMDoubleStream. mapToObj(@NonNull SerializableDoubleFunction<? extends T> function)
-