ProjectAres/Util/core/src/main/java/tc/oc/commons/core/util/IndexedBiConsumer.java

7 lines
138 B
Java

package tc.oc.commons.core.util;
@FunctionalInterface
public interface IndexedBiConsumer<T, U> {
void accept(T t, U u, int index);
}