@FunctionalInterface public interface TriFunction<T,S,U,R>
Function and BiFunction, but takes 3 parameters T, S, U and returns R.| Modifier and Type | Method and Description |
|---|---|
R |
apply(T param1,
S param2,
U param3)
Applies the function for the given 3 parameters (T, S, U) and returns R.
|
Copyright © 2026. All rights reserved.