Interface TriFunction<A,B,C,R>

Type Parameters:
A - input a
B - input b
C - input c
R - return value
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>
Represents a function, taking 3 inputs and receiving a return value.
Since:
3.0.0
Author:
MrIvanPlays
  • 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 - function argument a
      b - function argument b
      c - function argument c
      Returns:
      function result