Package com.google.mu.function
Interface CheckedBiConsumer<A,B,E extends Throwable>
- Functional Interface:
- This is a functional interface and can therefore be used as the assignment target for a lambda expression or method reference.
A binary consumer that can throw checked exceptions.
-
Method Summary
-
Method Details
-
accept
- Throws:
E
-
andThen
default <R> CheckedBiConsumer<A,B, andThenE> (CheckedBiConsumer<? super A, ? super B, ? extends E> that) Returns a newCheckedBiConsumer
that also passes the inputs tothat
.
-