Package com.marcpg.libpg.util
Interface ThrowingBiConsumer<T,U,E extends Exception>
- Type Parameters:
T
- the type of the first argument to the operation.U
- the type of the second argument to the operationE
- the type of exception that is thrown when accepted.
- Functional Interface:
- This is a functional interface and can therefore be used as the assignment target for a lambda expression or method reference.
Represents an operation that accepts two inputs, returns no result
and throws a specified exception when
accept(Object, Object)
accepted}.- See Also:
-
Method Summary
-
Method Details
-
accept
Performs this operation on the given arguments.- Parameters:
t
- the first input argumentu
- the second input argument- Throws:
E
- the specified exception
-