All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.rx.util.function.PredicateFuncWithIndex Maven / Gradle / Ivy

There is a newer version: 3.0.0
Show newest version
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 - 2024 Weber Informatics LLC | Privacy Policy