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