openlist
Interface Function2arg<Type>

All Known Implementing Classes:
DoubleMultiplier

public interface Function2arg<Type>

A Function2arg is an object used to implement a 2-argument function, to be passed to a higher-order method such as foldl or foldr.


Method Summary
 Type apply(Type arg1, Type arg2)
          Apply this function
 

Method Detail

apply

Type apply(Type arg1,
           Type arg2)
Apply this function

Parameters:
arg1 - the first argument
arg2 - the second argument
Returns:
the function's value