![JAR search and dependency download from the Maven repository](/logo.png)
org.rx.util.function.PredicateFunc Maven / Gradle / Ivy
package org.rx.util.function;
import lombok.SneakyThrows;
import java.util.function.Predicate;
@FunctionalInterface
public interface PredicateFunc extends Predicate {
boolean invoke(T t) throws Throwable;
@SneakyThrows
@Override
default boolean test(T t) {
return invoke(t);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy