Interface XBiPredicate<T,U>

Type Parameters:
T - 第一个参数的类型
U - 第二个参数的类型
All Superinterfaces:
BiPredicate<T,U>, 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 XBiPredicate<T,U> extends BiPredicate<T,U>, Serializable
表示两个参数(布尔值函数)。这就是谓词的二元专门化
Since:
Java 17+
Author:
Kimi Liu