Copyright Tony Morris 2008

This software is released under an open source BSD licence.

fj
Interface F2<A,B,C>


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.

Version:
2.19

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 Tony Morris 2008

This software is released under an open source BSD licence.