Package org.zkoss.stateless.function
Interface CheckedFunction3<A,B,C,R>
-
public interface CheckedFunction3<A,B,C,R>
Represents an operation that accepts three arguments and returns single result.- Author:
- jumperchen
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description default <V> CheckedFunction3<A,B,C,V>
andThen(CheckedFunction<? super R,? extends V> after)
R
apply(A a, B b, C c)
-
-
-
Method Detail
-
andThen
default <V> CheckedFunction3<A,B,C,V> andThen(CheckedFunction<? super R,? extends V> after)
-
-