@FunctionalInterface
public interface Function5<A,B,C,D,E,R>
| Modifier and Type | Method and Description |
|---|---|
default <U> Function5<A,B,C,D,E,U> |
andThen(Function1<R,U> after) |
R |
apply(A t1,
B t2,
C t3,
D t4,
E t5) |
default <U> Function1<U,R> |
compose(Function1<U,A> beforeT1,
Function1<U,B> beforeT2,
Function1<U,C> beforeT3,
Function1<U,D> beforeT4,
Function1<U,E> beforeT5) |
default Function1<A,Function1<B,Function1<C,Function1<D,Function1<E,R>>>>> |
curried() |
default Function1<Tuple5<A,B,C,D,E>,R> |
tupled() |