Package at.jku.ssw.fp.util
Interface TerFunction<T1,T2,T3,R>
-
- Type Parameters:
T1
- the type of the first argumentT2
- the type of the second argumentT3
- the type of the third argumentR
- the type of the return value
public interface TerFunction<T1,T2,T3,R>
Functional interface for ternary functions.- Author:
- Herbert Praehofer
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description R
apply(T1 t1, T2 t2, T3 t3)
Abstract method of the ternary function.
-