aboutsummaryrefslogtreecommitdiff
path: root/src/scala/compat/java8/JFunction3.java
blob: 213f9784be65398283ac6c3a6a83e649d07a1d58 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
/*
 * Copyright (C) 2012-2014 Typesafe Inc. <http://www.typesafe.com>
 */

package scala.compat.java8;

@FunctionalInterface
public interface JFunction3<T1, T2, T3, R> extends scala.Function3<T1, T2, T3, R> {
 default void $init$() {
 };

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

 default scala.Function1<scala.Tuple3<T1, T2, T3>, R> tupled() {
 return scala.Function3$class.tupled(this);
 }


}