provided.util
Interface ILambda<R,P>

Type Parameters:
R - Type of the return value
P - Type of the input parameters

public interface ILambda<R,P>

Generalized lambda that takes inputs and has a return value

Author:
swong

Method Summary
 R apply(P... params)
          Run (apply) the lambda
 

Method Detail

apply

R apply(P... params)
Run (apply) the lambda

Parameters:
params - vararg of input parameters
Returns:
The result of running the lambda with the given input parameters.