Package org.apache.flink.util.function
Interface QuadFunction<S,T,U,V,R>
-
- Type Parameters:
S
- type of the first argumentT
- type of the second argumentU
- type of the third argumentV
- type of the fourth 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 QuadFunction<S,T,U,V,R>
Function which takes three arguments.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description R
apply(S s, T t, U u, V v)
Applies this function to the given arguments.
-