aboutsummaryrefslogtreecommitdiff
path: root/src/main/java/com/github/markozajc/functions/ObjObjBooleanFunction.java
blob: 777400de4e00f7e652f532b0c3b50b83bf0424bf (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
package com.github.markozajc.functions;

import java.util.function.Function;

/**
 * A {@link Function} variant that takes two generic types and a primitive boolean,
 * and returns a generic type.
 *
 * @author Marko Zajc
 *
 * @param <T>
 *            the type of the first argument to the function
 * @param <U>
 *            the type of the second argument to the function
 * @param <R>
 *            the type of the result of the function
 */
@FunctionalInterface
public interface ObjObjBooleanFunction<T, U, R> {

	/**
	 * Applies this function to the given arguments.
	 *
	 * @param t
	 *            the first function argument
	 * @param u
	 *            the second function argument
	 * @param b
	 *            the third ({@code boolean}) function argument
	 *
	 * @return the function result
	 */
	R apply(T t, U u, boolean b);

}