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