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 F<A,B>

All Known Implementing Classes:
F2W, FW

public interface F<A,B>

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


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 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.