![JAR search and dependency download from the Maven repository](/logo.png)
xdean.jex.extra.function.Func2 Maven / Gradle / Ivy
The newest version!
package xdean.jex.extra.function;
import java.util.function.BiFunction;
import xdean.codecov.CodecovIgnore;
@CodecovIgnore
@FunctionalInterface
public interface Func2 extends BiFunction {
R call(A a, B b);
@Override
default R apply(A a, B b) {
return call(a, b);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy