Uses of Interface
zone.lamprey.function.IntPredicate
| Package | Description |
|---|---|
| zone.lamprey.function |
Functional interfaces provide target types for lambda expressions
and method references.
|
-
Uses of IntPredicate in zone.lamprey.function
Methods in zone.lamprey.function that return IntPredicate Modifier and Type Method Description default IntPredicateIntPredicate. and(IntPredicate other)Returns a composed predicate that represents a short-circuiting logical AND of this predicate and another.default IntPredicateIntFunction. mapToPredicate(Predicate<? super R> functor)Lift a function.default IntPredicateIntPredicate. mapToPredicate(Predicate<? super Boolean> functor)Lift a function.default IntPredicateIntUnaryOperator. mapToPredicate(IntPredicate functor)Lift a function.default IntPredicateIntPredicate. negate()Returns a predicate that represents the logical negation of this predicate.default IntPredicateIntPredicate. or(IntPredicate other)Returns a composed predicate that represents a short-circuiting logical OR of this predicate and another.Methods in zone.lamprey.function with parameters of type IntPredicate Modifier and Type Method Description default IntPredicateIntPredicate. and(IntPredicate other)Returns a composed predicate that represents a short-circuiting logical AND of this predicate and another.default IntPredicateIntUnaryOperator. mapToPredicate(IntPredicate functor)Lift a function.default BiPredicate<T,U>ToIntBiFunction. mapToPredicate(IntPredicate functor)Lift a function.default Predicate<T>ToIntFunction. mapToPredicate(IntPredicate functor)Lift a function.default IntPredicateIntPredicate. or(IntPredicate other)Returns a composed predicate that represents a short-circuiting logical OR of this predicate and another.default BooleanSupplierIntSupplier. predicate(IntPredicate functor)Lift a supplier.default intIntUnaryOperator. recurse(int value, IntPredicate terminalCondition)A method that tells a function to call itself with its own result.default intIntUnaryOperator. recurse(int value, IntPredicate terminalCondition, int maxDepth)A method that tells a function to call itself with its own result.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.