Uses of Interface
io.vavr.CheckedConsumer
-
Packages that use CheckedConsumer Package Description io.vavr BesideAPIthe io.vavr package contains core types like (Checked)Functions and Tuples.io.vavr.control -
-
Uses of CheckedConsumer in io.vavr
Methods in io.vavr that return CheckedConsumer Modifier and Type Method Description default CheckedConsumer<T>CheckedConsumer. andThen(@NonNull CheckedConsumer<? super T> after)Returns a composedCheckedConsumerthat performs, in sequence,this.accept(t)followed byafter.accept(t)for the same inputt.static <T> CheckedConsumer<T>CheckedConsumer. of(@NonNull CheckedConsumer<T> methodReference)Creates aCheckedConsumerfrom the given method reference or lambda.Methods in io.vavr with parameters of type CheckedConsumer Modifier and Type Method Description default CheckedConsumer<T>CheckedConsumer. andThen(@NonNull CheckedConsumer<? super T> after)Returns a composedCheckedConsumerthat performs, in sequence,this.accept(t)followed byafter.accept(t)for the same inputt.static <T> CheckedConsumer<T>CheckedConsumer. of(@NonNull CheckedConsumer<T> methodReference)Creates aCheckedConsumerfrom the given method reference or lambda. -
Uses of CheckedConsumer in io.vavr.control
Methods in io.vavr.control with parameters of type CheckedConsumer Modifier and Type Method Description default Try<T>Try. andThenTry(@NonNull CheckedConsumer<? super T> consumer)
-