io.polaris.core.function.CallableWithArgs4 Maven / Gradle / Ivy
package io.polaris.core.function;
/**
* @author Qt
* @since 1.8
*/
@FunctionalInterface
public interface CallableWithArgs4 {
V call(A a, B b, C c, D d) throws Exception;
}
package io.polaris.core.function;
/**
* @author Qt
* @since 1.8
*/
@FunctionalInterface
public interface CallableWithArgs4 {
V call(A a, B b, C c, D d) throws Exception;
}