Interface Function4<A,B,C,D,R>

Type Parameters:
A - The first argument.
B - The second argument.
C - The third argument.
D - The fourth argument.
R - The return type.
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>
A function that takes in 4 arguments.
See Also:
  • Method Summary

    Modifier and Type
    Method
    Description
    default <V> Function4<A,B,C,D,V>
    andThen(Function<? super R,? extends V> after)
     
    apply(A a, B b, C c, D d)