- Functional Interface:
- This is a functional interface and can therefore be used as the assignment target for a lambda expression or method reference.
@FunctionalInterface
public interface Function4<A,B,C,D,R>
-
Method Summary
| Modifier and Type |
Method |
Description |
R |
apply(A a,
B b,
C c,
D d) |
|
default Function3<B,C,D,R> |
bind(A a) |
|
default Function2<C,D,R> |
bind(A a,
B b) |
|
default Function1<D,R> |
bind(A a,
B b,
C c) |
|
default Function0<R> |
bind(A a,
B b,
C c,
D d) |
|
-
Method Details
-
R apply(
A a,
B b,
C c,
D d)
-
-
-
-