Uses of Interface
zone.lamprey.function.LongUnaryOperator
| Package | Description |
|---|---|
| zone.lamprey.function |
Functional interfaces provide target types for lambda expressions
and method references.
|
-
Uses of LongUnaryOperator in zone.lamprey.function
Fields in zone.lamprey.function declared as LongUnaryOperator Modifier and Type Field Description static LongUnaryOperatorLongUnaryOperator. ABSFunctional interface toMath.abs(long)Methods in zone.lamprey.function that return LongUnaryOperator Modifier and Type Method Description default LongUnaryOperatorLongBinaryOperator. applyPartialL(long t)Performs a partial application, resulting in a function that calls this with its argument and the argument given here.default LongUnaryOperatorLongBinaryOperator. applyPartialR(long u)Performs a partial application, resulting in a function that calls this with its argument and the argument given here.static LongUnaryOperatorLongFunction. identity()Returns a unary operator that always returns its input argument.static LongUnaryOperatorLongUnaryOperator. identity()Returns a unary operator that always returns its input argument.default LongUnaryOperatorLongUnaryOperator. map(UnaryOperator<Long> functor)Lift a function.default LongUnaryOperatorLongFunction. mapToLong(ToLongFunction<? super R> functor)Lift a function.default LongUnaryOperatorLongUnaryOperator. recursive(int depth)A method that creates a function which calls a function with its own result some amount of times.default LongUnaryOperatorLongUnaryOperator. recursive(LongPredicate terminalCondition)A method that creates a function which calls a function with its own result until some condition is met.default LongUnaryOperatorLongUnaryOperator. recursive(LongPredicate 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 LongUnaryOperator Modifier and Type Method Description default LongBinaryOperatorLongBinaryOperator. map(LongUnaryOperator functor)Lift a function.default LongSupplierLongSupplier. map(LongUnaryOperator functor)Lift a supplier.default ToLongBiFunction<T,U>ToLongBiFunction. map(LongUnaryOperator functor)Lift a function.default ToLongFunction<T>ToLongFunction. map(LongUnaryOperator functor)Lift a function.