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