@FunctionalInterface public interface Function3<T1,T2,T3,R>
Modifier and Type | Method and Description |
---|---|
R |
apply(T1 v1,
T2 v2,
T3 v3)
Apply this function to the arguments.
|
default R |
apply(Tuple3<T1,T2,T3> args)
Apply this function to the arguments.
|
default Function2<T2,T3,R> |
curry(T1 v1)
Partially apply this function to the arguments.
|
default Function1<T3,R> |
curry(T1 v1,
T2 v2)
Partially apply this function to the arguments.
|
default Function0<R> |
curry(T1 v1,
T2 v2,
T3 v3)
Partially apply this function to the arguments.
|
default Function2<T2,T3,R> |
curry(Tuple1<T1> args)
Partially apply this function to the arguments.
|
default Function1<T3,R> |
curry(Tuple2<T1,T2> args)
Partially apply this function to the arguments.
|
default Function0<R> |
curry(Tuple3<T1,T2,T3> args)
Partially apply this function to the arguments.
|
default R apply(Tuple3<T1,T2,T3> args)
args
- The arguments as a tuple.default Function0<R> curry(T1 v1, T2 v2, T3 v3)
default Function2<T2,T3,R> curry(Tuple1<T1> args)
default Function1<T3,R> curry(Tuple2<T1,T2> args)
Copyright © 2015. All Rights Reserved.