aboutsummaryrefslogblamecommitdiff
path: root/src/scala/compat/java8/JFunction5.java
blob: 0c56abda328f0e4789cacaf12b79a1277ece60c0 (plain) (tree)






















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

package scala.compat.java8;

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

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

 default scala.Function1<scala.Tuple5<T1, T2, T3, T4, T5>, R> tupled() {
 return scala.Function5$class.tupled(this);
 }


}