Copyright 2008 - 2009 Tony Morris, Runar Bjarnason, Tom Adams, Brad Clow, Ricky Clarkson, Nick Partridge, Jason Zaugg

This software is released under an open source BSD licence.

fj
Interface F2<A,B,C>

All Known Implementing Classes:
F2W

public interface F2<A,B,C>

A transformation function of arity-2 from A and B to C. This type can be represented using the Java 7 closure syntax.


Method Summary
 C f(A a, B b)
          Transform A and B to C.
 

Method Detail

f

C f(A a,
    B b)
Transform A and B to C.

Parameters:
a - The A to transform.
b - The B to transform.
Returns:
The result of the transformation.

Copyright 2008 - 2009 Tony Morris, Runar Bjarnason, Tom Adams, Brad Clow, Ricky Clarkson, Nick Partridge, Jason Zaugg

This software is released under an open source BSD licence.