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()
Negates this predicate.static <T> CheckedPredicate
<T> CheckedPredicate.of
(CheckedPredicate<T> methodReference) Creates aCheckedPredicate
.Methods in io.vavr with parameters of type CheckedPredicateModifier and TypeMethodDescriptionstatic <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 CheckedPredicateModifier and TypeMethodDescriptionFuture.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 CheckedPredicateModifier and TypeMethodDescriptionTry.filterTry
(CheckedPredicate<? super T> predicate) Returnsthis
if this is a Failure or this is a Success and the value satisfies the predicate.Try.filterTry
(CheckedPredicate<? super T> predicate, CheckedFunction1<? super T, ? extends Throwable> errorProvider) Returnsthis
if this is a Failure or this is a Success and the value satisfies the predicate.Try.filterTry
(CheckedPredicate<? super T> predicate, Supplier<? extends Throwable> throwableSupplier) Returnsthis
if this is a Failure or this is a Success and the value satisfies the predicate.