Interface TriFunction<A,B,C,R>

Type Parameters:
A - the type of the first argument
B - the type of the second argument
C - the type of the third 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.

@FunctionalInterface public interface TriFunction<A,B,C,R>
A function that takes three arguments and returns a result.
Since:
0.10.8
  • Method Summary

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

    • apply

      R apply(A a, B b, C c)
      Applies this function to the given arguments.
      Parameters:
      a - the first argument
      b - the second argument
      c - the third argument
      Returns:
      the result value
      Since:
      0.10.8