
org.rx.util.function.BiFuncWithIndex Maven / Gradle / Ivy
package org.rx.util.function;
import lombok.SneakyThrows;
@FunctionalInterface
public interface BiFuncWithIndex {
R invoke(T t, int index) throws Throwable;
@SneakyThrows
default R apply(T t, int index) {
return invoke(t, index);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy