util
Interface ILambda

All Known Implementing Classes:
NoOpLambda

public interface ILambda

Represents the abstract lambda expression whose sole purpose in life is to evaluate itself on an input and return the result of the evaluation.

Author:
Dung X. Nguyen

Method Summary
 java.lang.Object apply(java.lang.Object arg)
          Performs some computation with a given input Object.
 

Method Detail

apply

java.lang.Object apply(java.lang.Object arg)
Performs some computation with a given input Object. Returns an Object as the result.

Parameters:
arg - input object for this ILambda object.
Returns:
an output object resulting from evaluating the lambda expression on the input arg.