com.github.markozajc.ef.triconsumer.ObjObjBooleanConsumer Maven / Gradle / Ivy
package com.github.markozajc.ef.triconsumer;
/**
* A {@link TriConsumer} variant that takes two generic types and a primitive
* boolean.
*
* @author Marko Zajc
*
* @param
* the type of the first argument to the operation
* @param
* the type of the second argument to the operation
*/
@FunctionalInterface
public interface ObjObjBooleanConsumer {
/**
* Performs this operation on the given arguments.
*
* @param t
* the first input argument
* @param u
* the second input argument
* @param p
* the third ({@code boolean}) input argument
*/
void accept(T t, U u, boolean p);
}