Package tenapull.util
Interface Lambda2<A,B,R>
- Type Parameters:
A- argument1 -- the type of the first argument to be passed to the call methodB- argument2 -- the type of the second argument to be passed to the call methodR- the return type
public interface Lambda2<A,B,R>
Two-argument lambda with a return value
-
Method Details
-
call
Call the lambda- Parameters:
arg1- the first argument to the lambdaarg2- the second argument to the lambda- Returns:
- the return value from the lambda
-