@FunctionalInterface public interface TriFunction<T, U, V, R>
A function that accepts three arguments and produces a result.
| Type Params | Return Type | Name and description |
|---|---|---|
<K> |
public TriFunction<T, U, V, K> |
andThen(java.util.function.Function<? super R, ? extends K> after) |
|
public R |
apply(T t, U u, V v) |