T - Type of the first argumentU - Type of the second argumentV - Type of the third argumentR - Type of the result@FunctionalInterface public static interface Product.TriFunction<T,U,V,R>
| Modifier and Type | Method and Description |
|---|---|
R |
apply(T t,
U u,
V v)
Applies this function to the given arguments, creating a result of type
R. |
R apply(T t, U u, V v)
R.
This functional interface is used to apply custom behavior to tuples within the cartesian product, allowing for flexible creation of objects to represent those tuples.
t - the first function argumentu - the second function argumentv - the third function argumentRCopyright © 2023. All rights reserved.