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(@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 CheckedConsumerModifier and TypeMethodDescriptiondefault 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