@@ -45,6 +45,12 @@ public interface Func6<T1, T2, T3, T4, T5, T6, R>
4545 R apply (T1 t1 , T2 t2 , T3 t3 , T4 t4 , T5 t5 , T6 t6 );
4646 }
4747
48+ @ FunctionalInterface
49+ public interface Func7 <T1 , T2 , T3 , T4 , T5 , T6 , T7 , R >
50+ extends TemporalFunctionalInterfaceMarker , Serializable {
51+ R apply (T1 t1 , T2 t2 , T3 t3 , T4 t4 , T5 t5 , T6 t6 , T7 t7 );
52+ }
53+
4854 @ FunctionalInterface
4955 public interface Proc extends TemporalFunctionalInterfaceMarker , Serializable {
5056 void apply ();
@@ -82,12 +88,6 @@ public interface Proc6<T1, T2, T3, T4, T5, T6>
8288 void apply (T1 t1 , T2 t2 , T3 t3 , T4 t4 , T5 t5 , T6 t6 );
8389 }
8490
85- @ FunctionalInterface
86- public interface Func7 <T1 , T2 , T3 , T4 , T5 , T6 , T7 , R >
87- extends TemporalFunctionalInterfaceMarker , Serializable {
88- R apply (T1 t1 , T2 t2 , T3 t3 , T4 t4 , T5 t5 , T6 t6 , T7 t7 );
89- }
90-
9191 @ FunctionalInterface
9292 public interface Proc7 <T1 , T2 , T3 , T4 , T5 , T6 , T7 >
9393 extends TemporalFunctionalInterfaceMarker , Serializable {
0 commit comments