S - the type of the first argumentT - the type of the second argumentU - the type of the third argumentR - the return type@FunctionalInterface
public interface TriFunction<S,T,U,R>
| Modifier and Type | Method | Description |
|---|---|---|
R |
apply(S s,
T t,
U u) |
Applies this function to the given arguments.
|