Uses of Interface
io.vavr.CheckedPredicate
-
Packages that use CheckedPredicate Package Description io.vavr BesideAPIthe io.vavr package contains core types like (Checked)Functions and Tuples.io.vavr.concurrent This package contains basic building blocks for creating fast, asynchronous, non-blocking parallel code.io.vavr.control -
-
Uses of CheckedPredicate in io.vavr
Methods in io.vavr that return CheckedPredicate Modifier and Type Method Description default CheckedPredicate<T>CheckedPredicate. negate()Returns a predicate that represents the logical negation of this predicate.static <T> CheckedPredicate<T>CheckedPredicate. of(@NonNull CheckedPredicate<T> methodReference)Creates aCheckedPredicatefrom the given method reference or lambda.Methods in io.vavr with parameters of type CheckedPredicate Modifier and Type Method Description static <T> CheckedPredicate<T>CheckedPredicate. of(@NonNull CheckedPredicate<T> methodReference)Creates aCheckedPredicatefrom the given method reference or lambda. -
Uses of CheckedPredicate in io.vavr.concurrent
Methods in io.vavr.concurrent with parameters of type CheckedPredicate Modifier and Type Method Description default Future<T>Future. filterTry(@NonNull CheckedPredicate<? super T> predicate)Filters the result of thisFutureusing the givenCheckedPredicate, delegating toTry.filterTry(CheckedPredicate). -
Uses of CheckedPredicate in io.vavr.control
Methods in io.vavr.control with parameters of type CheckedPredicate Modifier and Type Method Description default Try<T>Try. filterTry(@NonNull CheckedPredicate<? super T> predicate)Returnsthisif thisTryis aTry.Failureor if it is aTry.Successand the value satisfies the given checked predicate.default Try<T>Try. filterTry(@NonNull CheckedPredicate<? super T> predicate, CheckedFunction1<? super T,? extends java.lang.Throwable> errorProvider)Returnsthisif thisTryis aTry.Failureor if it is aTry.Successand the value satisfies the given checked predicate.default Try<T>Try. filterTry(@NonNull CheckedPredicate<? super T> predicate, java.util.function.Supplier<? extends java.lang.Throwable> throwableSupplier)Returnsthisif thisTryis aTry.Failureor if it is aTry.Successand the value satisfies the given checked predicate.
-