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

7 lines
138 B
Java
Raw Normal View History

2017-01-30 01:43:34 +01:00
package tc.oc.commons.core.util;
@FunctionalInterface
public interface IndexedBiConsumer<T, U> {
void accept(T t, U u, int index);
}