Package org.apache.flink.util.function
Interface TriFunction<S,T,U,R>
-
- Type Parameters:
S- type of the first argumentT- type of the second argumentU- type of the third argumentR- type of the return value
- Functional Interface:
- This is a functional interface and can therefore be used as the assignment target for a lambda expression or method reference.
@PublicEvolving @FunctionalInterface public interface TriFunction<S,T,U,R>
Function which takes three arguments.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Rapply(S s, T t, U u)Applies this function to the given arguments.
-