com.github.hetianyi.common.fun.Function31 Maven / Gradle / Ivy
package com.github.hetianyi.common.fun;
/**
* 接收3个参数,拥有返回值。
* @param 参数1
* @param 参数2
* @param 参数3
* @param 返回值
*
* @author Jason He
* @version 1.0.0
* @since 1.0.0
* @date 2020-01-18
*/
@FunctionalInterface
public interface Function31 {
R apply(A1 a1, A2 a2, A3 a3) throws Exception;
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy