io.polaris.core.function.FiveElementConsumer Maven / Gradle / Ivy
package io.polaris.core.function;
/**
* @author Qt
* @since 1.8
*/
@FunctionalInterface
public interface FiveElementConsumer {
void accept(A a, B b, C c, D d, E e);
}
package io.polaris.core.function;
/**
* @author Qt
* @since 1.8
*/
@FunctionalInterface
public interface FiveElementConsumer {
void accept(A a, B b, C c, D d, E e);
}