edu.rice.cs.plt.lambda
Interface Runnable2<T1,T2>

Type Parameters:
T1 - the first argument type
T2 - the second argument type
All Known Subinterfaces:
LambdaUtil.GeneralRunnable

public interface Runnable2<T1,T2>

A binary lambda that doesn't have a return value (relying instead on side effects).

See Also:
Runnable, Runnable1, Runnable3, Runnable4, Lambda2

Method Summary
 void run(T1 arg1, T2 arg2)
           
 

Method Detail

run

void run(T1 arg1,
         T2 arg2)