org.dishevelled.functor
Interface BinaryFunction<E,F,RV>

Type Parameters:
E - first argument type
F - second argument type
RV - return value type

public interface BinaryFunction<E,F,RV>

Typed functor that takes two arguments of types E and F and returns a value of type RV.

Version:
$Revision: 1059 $ $Date: 2012-01-03 14:03:02 -0600 (Tue, 03 Jan 2012) $
Author:
Michael Heuer

Method Summary
 RV evaluate(E e, F f)
          Evaluate this function with the specified arguments.
 

Method Detail

evaluate

RV evaluate(E e,
            F f)
Evaluate this function with the specified arguments.

Parameters:
e - first argument to this evaluation
f - second argument to this evaluation
Returns:
the result of this evaluation


Copyright (c) 2004-2012 held jointly by the individual authors. Licensed under the GNU Lesser General Public License (LGPL).