edu.cmu.cs.crystal.util
Interface Lambda<I,O>

Type Parameters:
I - The type of the input to this lambda.
O - The type of the output from this lambda.

public interface Lambda<I,O>

A 'lambda,' or first-class function, that takes one argument and returns one argument.

Since:
Sep 9, 2008
Author:
Nels E. Beckman

Method Summary
 O call(I i)
           
 

Method Detail

call

O call(I i)