com.tukeof.common.function.ThrowableBiPredicate Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of common-core Show documentation
Show all versions of common-core Show documentation
a common and useful pure java library
The newest version!
package com.tukeof.common.function;
@FunctionalInterface
public interface ThrowableBiPredicate {
boolean test(T1 v1, T2 v2) throws Exception;
}