Interface XBiFunction<T,U,R>

Type Parameters:
T - 第一个参数的类型
U - 第二个参数的类型
R - 函数结果的类型
All Superinterfaces:
BiFunction<T,U,R>, Serializable
Functional Interface:
This is a functional interface and can therefore be used as the assignment target for a lambda expression or method reference.

@FunctionalInterface public interface XBiFunction<T,U,R> extends BiFunction<T,U,R>, Serializable
接受两个参数并产生结果的函数
Since:
Java 17+
Author:
Kimi Liu