@FunctionalInterface public interface Function4<T1,T2 ,T3 ,T4 ,R>
| Modifier and Type | Method and Description |
|---|---|
R |
apply(T1 v1, T2 v2, T3 v3, T4 v4)
Apply this function to the arguments.
|
default R |
apply(Tuple4
Apply this function to the arguments.
|
default Function3 |
curry(T1 v1)
Partially apply this function to the arguments.
|
default Function2 |
curry(T1 v1, T2 v2)
Partially apply this function to the arguments.
|
default Function1 |
curry(T1 v1, T2 v2, T3 v3)
Partially apply this function to the arguments.
|
default Function0 |
curry(T1 v1, T2 v2, T3 v3, T4 v4)
Partially apply this function to the arguments.
|
default Function3 |
curry(Tuple1
Partially apply this function to the arguments.
|
default Function2 |
curry(Tuple2
Partially apply this function to the arguments.
|
default Function1 |
curry(Tuple3
Partially apply this function to the arguments.
|
default Function0 |
curry(Tuple4
Partially apply this function to the arguments.
|
default R apply(Tuple4<? extends T1 ,? extends T2 ,? extends T3 ,? extends T4> args)
args - The arguments as a tuple.
default Function1<T4 ,R> curry(T1 v1, T2 v2, T3 v3)
default Function0<R> curry(T1 v1, T2 v2, T3 v3, T4 v4)
default Function3<T2 ,T3 ,T4 ,R> curry(Tuple1 <? extends T1> args)
default Function2<T3 ,T4 ,R> curry(Tuple2 <? extends T1 ,? extends T2> args)
default Function1<T4 ,R> curry(Tuple3 <? extends T1 ,? extends T2 ,? extends T3> args)