Uses of Interface
org.aoju.bus.core.lang.function.XBiPredicate
Packages that use XBiPredicate
Package
Description
函数封装 一个函数接口代表一个函数,用于包装一个函数为对象 在JDK8之前,Java的函数并不能作为参数传递,也不能作为返回值存在,此接口用于将一个函数包装成为对象,从而传递对象
-
Uses of XBiPredicate in org.aoju.bus.core.lang.function
Methods in org.aoju.bus.core.lang.function that return XBiPredicateModifier and TypeMethodDescriptiondefault XBiPredicate<T, U> XBiPredicate.and(XBiPredicate<? super T, ? super U> other) 返回一个组合断言,该断言表示此断言与另一个断言的短路逻辑与 在评估组合谓词时,如果此断言为false,则不评估other断言default XBiPredicate<T, U> XBiPredicate.negate()返回表示此断言的逻辑否定的断言default XBiPredicate<T, U> XBiPredicate.or(XBiPredicate<? super T, ? super U> other) 返回一个组合断言,该断言表示此谓词与另一个断言的短路逻辑或 在评估组合断言时,如果此断言为true,则不评估other断言Methods in org.aoju.bus.core.lang.function with parameters of type XBiPredicateModifier and TypeMethodDescriptiondefault XBiPredicate<T, U> XBiPredicate.and(XBiPredicate<? super T, ? super U> other) 返回一个组合断言,该断言表示此断言与另一个断言的短路逻辑与 在评估组合谓词时,如果此断言为false,则不评估other断言default XBiPredicate<T, U> XBiPredicate.or(XBiPredicate<? super T, ? super U> other) 返回一个组合断言,该断言表示此谓词与另一个断言的短路逻辑或 在评估组合断言时,如果此断言为true,则不评估other断言