package bjc.utils.funcutils; /** * Consumer that takes three arguments. * * @author EVE * * @param * Type of the first argument. * @param * Type of the second argument. * @param * Type of the third argument. * */ @FunctionalInterface public interface TriConsumer { /** * Perform the action. * * @param a * The first parameter. * * @param b * The second parameter. * * @param c * The third parameter. */ public void accept(A a, B b, C c); }