Uses of Interface
io.vavr.CheckedPredicate
-
Packages that use CheckedPredicate Package Description io.vavr BesideAPI
the 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()
Negates this predicate.static <T> CheckedPredicate<T>
CheckedPredicate. of(CheckedPredicate<T> methodReference)
Creates aCheckedPredicate
.Methods in io.vavr with parameters of type CheckedPredicate Modifier and Type Method Description static <T> CheckedPredicate<T>
CheckedPredicate. of(CheckedPredicate<T> methodReference)
Creates aCheckedPredicate
. -
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(CheckedPredicate<? super T> predicate)
Filters the result of thisFuture
by callingTry.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(CheckedPredicate<? super T> predicate)
Returnsthis
if this is a Failure or this is a Success and the value satisfies the predicate.default Try<T>
Try. filterTry(CheckedPredicate<? super T> predicate, CheckedFunction1<? super T,? extends java.lang.Throwable> errorProvider)
Returnsthis
if this is a Failure or this is a Success and the value satisfies the predicate.default Try<T>
Try. filterTry(CheckedPredicate<? super T> predicate, java.util.function.Supplier<? extends java.lang.Throwable> throwableSupplier)
Returnsthis
if this is a Failure or this is a Success and the value satisfies the predicate.
-