Module org.kink_lang.kink
Package org.kink_lang.kink.function
Interface ThrowingFunction3<T0,T1,T2,R>
-
- Type Parameters:
T0
- the type of the #0 argument.T1
- the type of the #1 argument.T2
- the type of the #2 argument.R
- the type of the result.
- All Known Subinterfaces:
Function3<T0,T1,T2,R>
- Functional Interface:
- This is a functional interface and can therefore be used as the assignment target for a lambda expression or method reference.
@FunctionalInterface public interface ThrowingFunction3<T0,T1,T2,R>
A ternary function which may throw a throwable.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description R
apply(T0 a0, T1 a1, T2 a2)
Applies the function to the given argument.
-