Uses of Interface
zone.lamprey.function.DoubleUnaryOperator
| Package | Description |
|---|---|
| zone.lamprey.function |
Functional interfaces provide target types for lambda expressions
and method references.
|
-
Uses of DoubleUnaryOperator in zone.lamprey.function
Fields in zone.lamprey.function declared as DoubleUnaryOperator Modifier and Type Field Description static DoubleUnaryOperatorDoubleUnaryOperator. ABSFunctional interface toMath.abs(double)Methods in zone.lamprey.function that return DoubleUnaryOperator Modifier and Type Method Description default DoubleUnaryOperatorDoubleBinaryOperator. applyPartialL(double t)Performs a partial application, resulting in a function that calls this with its argument and the argument given here.default DoubleUnaryOperatorDoubleBinaryOperator. applyPartialR(double u)Performs a partial application, resulting in a function that calls this with its argument and the argument given here.static DoubleUnaryOperatorDoubleFunction. identity()Returns a unary operator that always returns its input argument.static DoubleUnaryOperatorDoubleUnaryOperator. identity()Returns a unary operator that always returns its input argument.static DoubleUnaryOperatorIntFunction. identity()Returns a unary operator that always returns its input argument.default DoubleUnaryOperatorDoubleUnaryOperator. map(UnaryOperator<Double> functor)Lift a function.default DoubleUnaryOperatorDoubleFunction. mapToDouble(ToDoubleFunction<? super R> functor)Lift a function.default DoubleUnaryOperatorDoubleUnaryOperator. recursive(int depth)A method that creates a function which calls a function with its own result some amount of times.default DoubleUnaryOperatorDoubleUnaryOperator. recursive(DoublePredicate terminalCondition)A method that creates a function which calls a function with its own result until some condition is met.default DoubleUnaryOperatorDoubleUnaryOperator. recursive(DoublePredicate terminalCondition, int maxDepth)A method that creates a function which calls a function with its own result some amount of times or until some condition is met.Methods in zone.lamprey.function with parameters of type DoubleUnaryOperator Modifier and Type Method Description default DoubleBinaryOperatorDoubleBinaryOperator. map(DoubleUnaryOperator functor)Lift a function.default DoubleSupplierDoubleSupplier. map(DoubleUnaryOperator functor)Lift a supplier.default ToDoubleBiFunction<T,U>ToDoubleBiFunction. map(DoubleUnaryOperator functor)Lift a function.default ToDoubleFunction<T>ToDoubleFunction. map(DoubleUnaryOperator functor)Lift a function.