Uses of Interface
io.vavr.CheckedPredicate
Packages that use CheckedPredicate
Package
Description
Beside
API the io.vavr package contains core types like (Checked)Functions and Tuples.This package contains basic building blocks for creating fast, asynchronous, non-blocking parallel code.
-
Uses of CheckedPredicate in io.vavr
Methods in io.vavr that return CheckedPredicateModifier and TypeMethodDescriptiondefault 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 CheckedPredicateModifier and TypeMethodDescriptionstatic <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 CheckedPredicateModifier and TypeMethodDescriptionFuture.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 CheckedPredicateModifier and TypeMethodDescriptionTry.filterTry(@NonNull CheckedPredicate<? super T> predicate) Returnsthisif thisTryis aTry.Failureor if it is aTry.Successand the value satisfies the given checked predicate.Try.filterTry(@NonNull CheckedPredicate<? super T> predicate, CheckedFunction1<? super T, ? extends Throwable> errorProvider) Returnsthisif thisTryis aTry.Failureor if it is aTry.Successand the value satisfies the given checked predicate.Try.filterTry(@NonNull CheckedPredicate<? super T> predicate, Supplier<? extends Throwable> throwableSupplier) Returnsthisif thisTryis aTry.Failureor if it is aTry.Successand the value satisfies the given checked predicate.