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