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