Copyright Tony Morris 2008

This software is released under an open source BSD licence.

fj
Interface F<A,B>


public interface F<A,B>

A transformation or function from A to B. This type can be represented using the Java 7 closure syntax.

Version:
2.19

Method Summary
 B f(A a)
          Transform A to B.
 

Method Detail

f

B f(A a)
Transform A to B.

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

Copyright Tony Morris 2008

This software is released under an open source BSD licence.