edu.rice.cs.plt.lambda
Interface Lambda3<T1,T2,T3,R>

Type Parameters:
T1 - the first argument type
T2 - the second argument type
T3 - the third argument type
R - the return type
All Known Subinterfaces:
LambdaUtil.GeneralLambda<R>, LambdaUtil.LiftedLambda3<T1,T2,T3,R>

public interface Lambda3<T1,T2,T3,R>

An arbitrary piece of code parameterized by three arguments.

See Also:
Thunk, Lambda, Lambda2, Lambda4, Runnable3

Method Summary
 R value(T1 arg1, T2 arg2, T3 arg3)
           
 

Method Detail

value

R value(T1 arg1,
        T2 arg2,
        T3 arg3)