com.github.markozajc.ef.biconsumer.except.all.AEBiConsumer Maven / Gradle / Ivy
package com.github.markozajc.ef.biconsumer.except.all;
import java.util.function.BiConsumer;
import com.github.markozajc.ef.biconsumer.except.EBiConsumer;
/**
* Variant of {@link BiConsumer} capable of throwing an {@link Exception}.
*
* @author Marko Zajc
*
* @param
* the type of the first argument to the operation
* @param
* the type of the second argument to the operation
*/
@FunctionalInterface
public interface AEBiConsumer extends EBiConsumer {}