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