edu.cmu.cs.crystal.util
Interface Lambda2<I1,I2,O>

Type Parameters:
I1 - The type of the first argument.
I2 - The type of the second argument.
O - The type of the output.

public interface Lambda2<I1,I2,O>

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

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

Method Summary
 O call(I1 i1, I2 i2)
           
 

Method Detail

call

O call(I1 i1,
       I2 i2)