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

Type Parameters:
A - the type of the first argument
B - the type of the second argument
C - the type of the third argument
D - the type of the fourth argument
R - the type of the result
Functional Interface:
This is a functional interface and can therefore be used as the assignment target for a lambda expression or method reference.

@NullMarked @FunctionalInterface public interface QuadFunction<A,B,C,D,R>
A functional interface for a function that accepts four arguments and produces a result.
  • Method Summary

    Modifier and Type
    Method
    Description
    apply(A a, B b, C c, D d)
    Applies this function to the given arguments.
  • Method Details

    • apply

      R apply(A a, B b, C c, D d)
      Applies this function to the given arguments.
      Parameters:
      a - the first argument
      b - the second argument
      c - the third argument
      d - the fourth argument
      Returns:
      the result of applying this function