Uses of Interface
zone.lamprey.function.ToDoubleFunction
| Package | Description |
|---|---|
| zone.lamprey.function |
Functional interfaces provide target types for lambda expressions
and method references.
|
-
Uses of ToDoubleFunction in zone.lamprey.function
Subinterfaces of ToDoubleFunction in zone.lamprey.function Modifier and Type Interface Description interfaceDoubleUnaryOperatorRepresents an operation on a singledouble-valued operand that produces adouble-valued result.interfaceIntToDoubleFunctionRepresents a function that accepts an int-valued argument and produces a double-valued result.interfaceLongToDoubleFunctionRepresents a function that accepts a long-valued argument and produces a double-valued result.Methods in zone.lamprey.function that return ToDoubleFunction Modifier and Type Method Description default ToDoubleFunction<U>ToDoubleBiFunction. applyPartialL(T t)Performs a partial application, resulting in a function that calls this with its argument and the argument given here.default ToDoubleFunction<T>ToDoubleBiFunction. applyPartialR(U u)Performs a partial application, resulting in a function that calls this with its argument and the argument given here.default ToDoubleFunction<T>ToDoubleFunction. map(DoubleUnaryOperator functor)Lift a function.default ToDoubleFunction<T>Function. mapToDouble(ToDoubleFunction<? super R> functor)Lift a function.default ToDoubleFunction<T>ToIntFunction. mapToDouble(IntToDoubleFunction functor)Lift a function.default ToDoubleFunction<T>ToLongFunction. mapToDouble(LongToDoubleFunction functor)Lift a function.Methods in zone.lamprey.function with parameters of type ToDoubleFunction Modifier and Type Method Description default ToDoubleBiFunction<T,U>BiFunction. mapToDouble(ToDoubleFunction<? super R> functor)Lift a function.default DoubleUnaryOperatorDoubleFunction. mapToDouble(ToDoubleFunction<? super R> functor)Lift a function.default ToDoubleFunction<T>Function. mapToDouble(ToDoubleFunction<? super R> functor)Lift a function.default IntToDoubleFunctionIntFunction. mapToDouble(ToDoubleFunction<? super R> functor)Lift a function.default LongToDoubleFunctionLongFunction. mapToDouble(ToDoubleFunction<? super R> functor)Lift a function.default DoubleSupplierSupplier. mapToDouble(ToDoubleFunction<T> functor)Lift a supplier.