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

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,T>
A 4-arg function.
Since:
9.5
  • Method Summary

    Modifier and Type
    Method
    Description
    apply(A a, B b, C c, D d)
     
  • Method Details

    • apply

      T apply(A a, B b, C c, D d)