Uses of Interface
com.tangosol.util.function.Remote.DoubleUnaryOperator
-
Packages that use Remote.DoubleUnaryOperator Package Description com.tangosol.util.function Contains Functional interfaces allowing remote execution of lambda expressions and method references.com.tangosol.util.stream Contains classes to support functional-style operations on remote streams of elements, such as map-reduce transformations on collections. -
-
Uses of Remote.DoubleUnaryOperator in com.tangosol.util.function
Methods in com.tangosol.util.function that return Remote.DoubleUnaryOperator Modifier and Type Method Description default Remote.DoubleUnaryOperator
Remote.DoubleUnaryOperator. andThen(Remote.DoubleUnaryOperator after)
Returns a composed operator that first applies this operator to its input, and then applies theafter
operator to the result.default Remote.DoubleUnaryOperator
Remote.DoubleUnaryOperator. compose(Remote.DoubleUnaryOperator before)
Returns a composed operator that first applies thebefore
operator to its input, and then applies this operator to the result.static Remote.DoubleUnaryOperator
Remote. doubleUnaryOperator(Remote.DoubleUnaryOperator operator)
Capture serializable DoubleUnaryOperator.static Remote.DoubleUnaryOperator
Remote.DoubleUnaryOperator. identity()
Returns a unary operator that always returns its input argument.Methods in com.tangosol.util.function with parameters of type Remote.DoubleUnaryOperator Modifier and Type Method Description default Remote.DoubleUnaryOperator
Remote.DoubleUnaryOperator. andThen(Remote.DoubleUnaryOperator after)
Returns a composed operator that first applies this operator to its input, and then applies theafter
operator to the result.default Remote.DoubleUnaryOperator
Remote.DoubleUnaryOperator. compose(Remote.DoubleUnaryOperator before)
Returns a composed operator that first applies thebefore
operator to its input, and then applies this operator to the result.static Remote.DoubleUnaryOperator
Remote. doubleUnaryOperator(Remote.DoubleUnaryOperator operator)
Capture serializable DoubleUnaryOperator. -
Uses of Remote.DoubleUnaryOperator in com.tangosol.util.stream
Methods in com.tangosol.util.stream with parameters of type Remote.DoubleUnaryOperator Modifier and Type Method Description default RemoteDoubleStream
RemoteDoubleStream. map(Remote.DoubleUnaryOperator mapper)
Returns a stream consisting of the results of applying the given function to the elements of this stream.
-