Skip to content

Commit 74429e6

Browse files
committed
Added placeholder wrappers for the other function arities (3-8).
1 parent d7d02f3 commit 74429e6

File tree

6 files changed

+53
-0
lines changed

6 files changed

+53
-0
lines changed

core/src/main/java/fj/F3W.java

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
package fj;
2+
3+
/**
4+
* Created by MarkPerry on 22/01/2015.
5+
*/
6+
public abstract class F3W<A, B, C, D> implements F3<A, B, C, D> {
7+
8+
}

core/src/main/java/fj/F4W.java

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
package fj;
2+
3+
/**
4+
* Created by MarkPerry on 22/01/2015.
5+
*/
6+
public abstract class F4W<A, B, C, D, E> implements F4<A, B, C, D, E> {
7+
8+
9+
}

core/src/main/java/fj/F5W.java

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
package fj;
2+
3+
/**
4+
* Created by MarkPerry on 22/01/2015.
5+
*/
6+
public abstract class F5W<A, B, C, D, E, $F> implements F5<A, B, C, D, E, $F> {
7+
8+
9+
}

core/src/main/java/fj/F6W.java

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
package fj;
2+
3+
/**
4+
* Created by MarkPerry on 22/01/2015.
5+
*/
6+
public abstract class F6W<A, B, C, D, E, $F, G> implements F6<A, B, C, D, E, $F, G> {
7+
8+
9+
}

core/src/main/java/fj/F7W.java

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
package fj;
2+
3+
/**
4+
* Created by MarkPerry on 22/01/2015.
5+
*/
6+
public abstract class F7W<A, B, C, D, E, $F, G, H> implements F7<A, B, C, D, E, $F, G, H> {
7+
8+
9+
}

core/src/main/java/fj/F8W.java

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
package fj;
2+
3+
/**
4+
* Created by MarkPerry on 22/01/2015.
5+
*/
6+
public abstract class F8W<A, B, C, D, E, $F, G, H, I> implements F8<A, B, C, D, E, $F, G, H, I> {
7+
8+
9+
}

0 commit comments

Comments
 (0)