org.littleshoot.util
Interface F2<T0,T1,ReturnT>

Type Parameters:
T0 - The type of the first parameter.
T1 - The type of the second parameter.
ReturnT - The return type of the function.

public interface F2<T0,T1,ReturnT>

A two-argument function.


Method Summary
 ReturnT run(T0 arg0, T1 arg1)
          Runs this function.
 

Method Detail

run

ReturnT run(T0 arg0,
            T1 arg1)
Runs this function.

Parameters:
arg0 - The first argument.
arg1 - The second argument.
Returns:
The return value of this function.


Copyright © 2011-2013 LittleShoot. All Rights Reserved.