Interface Function

All Known Implementing Classes:
Closure, IntComparison, IntOperation

public interface Function

The run-time representation of a function (that is, a procedure). This is a value that can be applied to another value (the function's argument), so as to compute yet another value (the function's result).


Method Summary
 java.lang.Object apply(java.lang.Object argument)
          Apply this function to a specified argument value.
 

Method Detail

apply

java.lang.Object apply(java.lang.Object argument)
Apply this function to a specified argument value.

Parameters:
argument - the argument value
Returns:
the result value from the function application.