Uses of Interface
io.vavr.CheckedConsumer
Packages that use CheckedConsumer
Package
Description
Beside
API the io.vavr package contains core types like (Checked)Functions and Tuples.-
Uses of CheckedConsumer in io.vavr
Methods in io.vavr that return CheckedConsumerModifier and TypeMethodDescriptiondefault 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 CheckedConsumerModifier and TypeMethodDescriptiondefault 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 CheckedConsumerModifier and TypeMethodDescriptionTry.andThenTry(CheckedConsumer<? super T> consumer) Passes the result to the givenconsumerif this is aSuccess.