@FunctionalInterface
public interface Function5<A,B,C,D,E,R>
Equal to BiFunction but with 5 arguments.
toFunction(Function5),
toBiFunction(Function5)| Modifier and Type | Method and Description |
|---|---|
default <V> Function5<A,B,C,D,E,V> |
andThen(java.util.function.Function<? super R,? extends V> then) |
R |
apply(A a,
B b,
C c,
D d,
E e) |
static <A,B,C,D,E,R> |
toBiFunction(Function5<A,B,C,D,E,R> delegate)
Convert specified function to the
BiFunction were all arguments except the thirst one are represented
as a single Tuple4 instance. |
static <A,B,C,D,E,R> |
toFunction(Function5<A,B,C,D,E,R> delegate)
Convert specified function to the
Function were all arguments are represented
as a single Tuple5 instance. |
static <A,B,C,D,E,R> java.util.function.Function<Tuple5<A,B,C,D,E>,R> toFunction(Function5<A,B,C,D,E,R> delegate)
Function were all arguments are represented
as a single Tuple5 instance.static <A,B,C,D,E,R> java.util.function.BiFunction<A,Tuple4<B,C,D,E>,R> toBiFunction(Function5<A,B,C,D,E,R> delegate)
BiFunction were all arguments except the thirst one are represented
as a single Tuple4 instance.