forked from functionaljava/functionaljava
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathF6.java
More file actions
24 lines (23 loc) · 872 Bytes
/
F6.java
File metadata and controls
24 lines (23 loc) · 872 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
package fj;
/**
* A transformation function of arity-6 from <code>A</code>, <code>B</code>, <code>C</code>,
* <code>D</code>, <code>E</code> and <code>F$</code> to <code>G</code>. This type can be
* represented using the Java 7 closure syntax.
*
* @version %build.number%
*/
public abstract class F6<A, B, C, D, E, F$, G> {
/**
* Transform <code>A</code>, <code>B</code>, <code>C</code>, <code>D</code>, <code>E</code> and
* <code>F$</code> to <code>G</code>.
*
* @param a The <code>A</code> to transform.
* @param b The <code>B</code> to transform.
* @param c The <code>C</code> to transform.
* @param d The <code>D</code> to transform.
* @param e The <code>E</code> to transform.
* @param f The <code>F$</code> to transform.
* @return The result of the transformation.
*/
public abstract G f(A a, B b, C c, D d, E e, F$ f);
}