Is there a good library for functional programming in Java?
I'm looking for stuff like Predicate and List.Find() (as a static method). Not complicated to implement, but it would be nice to find reuse a library here.
|
6
|
Is there a good library for functional programming in Java? I'm looking for stuff like Predicate and List.Find() (as a static method). Not complicated to implement, but it would be nice to find reuse a library here.
|
||
|
|
|
|
FunctionalJava is the best known library; it makes use of Java closures (BGGA) for examples:
EDIT Check also lambdaj. Further EDIT BGGA is entirely optional. It just makes for nicer syntax. |
||||||||
|
|
|
If you want a pure Java solution check out lambdaj http://code.google.com/p/lambdaj/ Besides the possibility to define and use closure in a DSL-style, it also allows to manipulate collections in a functional way, without explicitly write closures or loops |
||
|
|
|
|
Jambda is another FP-library. From the documentation:
|
||
|
|
|
|
This isn't a library but I feel it should be mentioned: scala is a functional programming language that is fully compatible with java (runs through the java vm). Using it is pretty much like being able to write functional java code. :D |
||
|
|
|
|
Google collections has a decent selection of functional-programming style utility methods. Some classes of interest are Iterables, Iterators, Function, Functions, etc It also has a bunch of collection classes as well! |
||
|
|
|
|
Functional Java is one that's worth taking a look at and FunctionalJ is another. |
||||||||||||||
|