Interface Function3<D0,D1,D2,R>

Type Parameters:
D0 - the first argument type
D1 - the second argument type
D2 - the third argument type
R - the result 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 Function3<D0,D1,D2,R>
A function with three arguments.
  • Method Summary

    Modifier and Type
    Method
    Description
    apply(D0 arg0, D1 arg1, D2 arg2)
    Applies this function to the given arguments.
  • Method Details

    • apply

      R apply(D0 arg0, D1 arg1, D2 arg2)
      Applies this function to the given arguments.
      Parameters:
      arg0 - the first function argument
      arg1 - the second function argument
      arg2 - the third function argument
      Returns:
      the function result