ubiware.core.visualizer
Interface Lambda<_Return_T>


public interface Lambda<_Return_T>

A class which models the concept of functors (C++) or function (functional programming), processes (Ruby), etc.

Author:
Nikos Mouchtaris

Method Summary
 _Return_T call(java.lang.Object... args)
          Executes this function and returns its result.
 

Method Detail

call

_Return_T call(java.lang.Object... args)
Executes this function and returns its result.

Parameters:
args - the arguments for the function
Returns:
the result of the function