Uses of Interface
zone.lamprey.function.DoubleFunction
| Package | Description |
|---|---|
| zone.lamprey.function |
Functional interfaces provide target types for lambda expressions
and method references.
|
-
Uses of DoubleFunction in zone.lamprey.function
Subinterfaces of DoubleFunction in zone.lamprey.function Modifier and Type Interface Description interfaceDoublePredicateRepresents a predicate (boolean-valued function) of onedouble-valued argument.interfaceDoubleToIntFunctionRepresents a function that accepts a double-valued argument and produces an int-valued result.interfaceDoubleToLongFunctionRepresents a function that accepts a double-valued argument and produces a long-valued result.interfaceDoubleUnaryOperatorRepresents an operation on a singledouble-valued operand that produces adouble-valued result.Fields in zone.lamprey.function declared as DoubleFunction Modifier and Type Field Description static DoubleFunction<String>DoubleFunction. TO_STRINGFunctional interface toString.valueOf(double)Methods in zone.lamprey.function that return DoubleFunction Modifier and Type Method Description default <S> DoubleFunction<S>DoubleFunction. map(Function<? super R,? extends S> functor)Lift a function.default <S> DoubleFunction<S>DoubleUnaryOperator. mapToObj(DoubleFunction<? extends S> functor)Lift a function.Methods in zone.lamprey.function with parameters of type DoubleFunction Modifier and Type Method Description default <R> Supplier<R>DoubleSupplier. mapToObj(DoubleFunction<R> functor)Lift a supplier.default <S> DoubleFunction<S>DoubleUnaryOperator. mapToObj(DoubleFunction<? extends S> functor)Lift a function.default <S> BiFunction<T,U,S>ToDoubleBiFunction. mapToObj(DoubleFunction<? extends S> functor)Lift a function.default <S> Function<T,S>ToDoubleFunction. mapToObj(DoubleFunction<? extends S> functor)Lift a function.