org.codefilarete.tool.function.ThrowingBiConsumer Maven / Gradle / Ivy
package org.codefilarete.tool.function;
/**
* @author Guillaume Mary
*/
@FunctionalInterface
public interface ThrowingBiConsumer {
/**
* Performs this operation on the given argument.
*
* @param c the first argument
* @param t the second argument
*/
void accept(C c, T t) throws E;
}