Module pro.verron.officestamper
Package pro.verron.officestamper.utils
Interface TriFunction<T,U,V,W>
- Type Parameters:
T
- the type of the first input to the functionU
- the type of the second input to the functionV
- the type of the third input to the functionW
- the type of the function result
- Functional Interface:
- This is a functional interface and can therefore be used as the assignment target for a lambda expression or method reference.
Represents a functional interface that takes three input arguments of types T, U, and V
and produces a result of type W. This is a tri-arity specialization of a function, allowing
operations on three inputs to produce a single output.
-
Method Summary
-
Method Details
-
apply
Applies this function to the given arguments and produces a result.- Parameters:
t
- the first input argument to the functionu
- the second input argument to the functionv
- the third input argument to the function- Returns:
- the result produced by applying this function to the given arguments
-