Utils.function.TriConsumer Maven / Gradle / Ivy
package Utils.function;
import java.util.function.Consumer;
/**
* Represents an operation that accepts two input arguments and returns no
* result. This is the three-arity specialization of {@link Consumer}.
* Unlike most other functional interfaces, {@code BiConsumer} is expected
* to operate via side-effects.
*
* This is a functional interface
* whose functional method is {@link #accept(Object, Object, Object)}.
*
* @param the type of the first argument to the operation
* @param the type of the second argument to the operation
* @param the type of the second argument to the operation
*
* @see Consumer
*/
public interface TriConsumer {
/**
* Performs this operation on the given arguments.
*
* @param t the first input argument
* @param u the second input argument
* @param v the third input argument
*/
void accept(T t, U u,V v);
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy