Uses of Interface
org.miaixz.bus.core.center.function.BiPredicateX
Packages that use BiPredicateX
Package
Description
函数封装 接口灵感来自于ActFramework 一个函数接口代表一个一个函数,用于包装一个函数为对象
在JDK8之前,Java的函数并不能作为参数传递,也不能作为返回值存在,此接口用于将一个函数包装成为一个对象,从而传递对象
-
Uses of BiPredicateX in org.miaixz.bus.core.center.function
Methods in org.miaixz.bus.core.center.function that return BiPredicateXModifier and TypeMethodDescriptiondefault BiPredicateX<T, U> BiPredicateX.and(BiPredicateX<? super T, ? super U> other) 返回一个组合谓词,表示此谓词与另一个谓词的短路逻辑与。default BiPredicateX<T, U> BiPredicateX.negate()返回一个表示此谓词逻辑非的谓词。default BiPredicateX<T, U> BiPredicateX.or(BiPredicateX<? super T, ? super U> other) 返回一个组合谓词,表示此谓词与另一个谓词的短路逻辑或。Methods in org.miaixz.bus.core.center.function with parameters of type BiPredicateXModifier and TypeMethodDescriptiondefault BiPredicateX<T, U> BiPredicateX.and(BiPredicateX<? super T, ? super U> other) 返回一个组合谓词,表示此谓词与另一个谓词的短路逻辑与。default BiPredicateX<T, U> BiPredicateX.or(BiPredicateX<? super T, ? super U> other) 返回一个组合谓词,表示此谓词与另一个谓词的短路逻辑或。