Interface StructuredTaskUtil.TriFunction<T1,T2,T3,R>

Type Parameters:
T1 - the type of the first argument
T2 - the type of the second argument
T3 - the type of the third argument
R - the type of the result
Enclosing class:
StructuredTaskUtil
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 static interface StructuredTaskUtil.TriFunction<T1,T2,T3,R>
Functional interface for combining three values 用于合并三个值的函数式接口
Since:
JDK 25, opencode-base-core V1.0.0
Author:
Leon Soo www.LeonSoo.com
  • Method Summary

    Modifier and Type
    Method
    Description
    apply(T1 t1, T2 t2, T3 t3)
    Apply the function to three arguments
  • Method Details

    • apply

      R apply(T1 t1, T2 t2, T3 t3)
      Apply the function to three arguments
      Parameters:
      t1 - the first argument
      t2 - the second argument
      t3 - the third argument
      Returns:
      the function result