aboutsummaryrefslogblamecommitdiff
path: root/src/scala/compat/java8/JFunction7.java
blob: 51352aba681078274cd6f5953788c7e9bdcbbd92 (plain) (tree)
1
2
3
4
5
6
7
8
9








                                                                                                                   

                           
 


                                                                                                                                                                            
 


                                                                                   


 
/*
 * Copyright (C) 2012-2014 Typesafe Inc. <http://www.typesafe.com>
 */

package scala.compat.java8;

@FunctionalInterface
public interface JFunction7<T1, T2, T3, T4, T5, T6, T7, R> extends scala.Function7<T1, T2, T3, T4, T5, T6, T7, R> {
    default void $init$() {
    };

    default scala.Function1<T1, scala.Function1<T2, scala.Function1<T3, scala.Function1<T4, scala.Function1<T5, scala.Function1<T6, scala.Function1<T7, R>>>>>>> curried() {
      return scala.Function7$class.curried(this);
    }

    default scala.Function1<scala.Tuple7<T1, T2, T3, T4, T5, T6, T7>, R> tupled() {
      return scala.Function7$class.tupled(this);
    }


}