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(CheckedConsumer<? super T> after)Returns a chainedCheckedConsumerthat first executesthis.accept(t)and thenafter.accept(t), for a giventof typeT.static <T> CheckedConsumer<T>CheckedConsumer. of(CheckedConsumer<T> methodReference)Creates aCheckedConsumer.Methods in io.vavr with parameters of type CheckedConsumer Modifier and Type Method Description default CheckedConsumer<T>CheckedConsumer. andThen(CheckedConsumer<? super T> after)Returns a chainedCheckedConsumerthat first executesthis.accept(t)and thenafter.accept(t), for a giventof typeT.static <T> CheckedConsumer<T>CheckedConsumer. of(CheckedConsumer<T> methodReference)Creates aCheckedConsumer. -
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(CheckedConsumer<? super T> consumer)Passes the result to the givenconsumerif this is aSuccess.
-