aboutsummaryrefslogtreecommitdiff
path: root/src/main/java/com/github/markozajc/functions/ObjIntFunction.java
blob: b9e77933e27041556dd4d4d22da3a082b2f32b18 (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
package com.github.markozajc.functions;

import java.util.function.Function;

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

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

}