summaryrefslogtreecommitdiff
path: root/spellchecker/src/TriFunction.java
blob: 327e670d259692385193150888f74ee81feb484f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13

/**
 * An interface for a lambda function accepting three different parameters.
 *
 * @author Peter Wu
 * @param <A>
 * @param <B>
 * @param <C>
 */
interface TriFunction<A, B, C> {

    public void call(A a, B b, C c);
}