T - the first input value typeU - the second input value typeV - the third input value typeR - the output value typepublic interface IxFunction3<T,U,V,R>
| Modifier and Type | Method and Description |
|---|---|
R |
apply(T t,
U u,
V v)
Applies a function to the input values and returns an output value.
|