vote up 7 vote down star
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.

flag

63% accept rate

6 Answers

vote up 8 vote down check

FunctionalJava is the best known library; it makes use of Java closures (BGGA) for examples:

final Array<Integer> a = array(1, 2, 3);  
final Array<Integer> b = a.map({int i => i + 42});  
arrayShow(intShow).println(b); // {43,44,45}

EDIT

Check also lambdaj.

Further EDIT

BGGA is entirely optional. It just makes for nicer syntax.

link|flag
But BGGA is not actually in Java. So this won't compile, right? – Gabe Moothart Aug 12 at 17:24
1  
BGGA is available as a precompiler that translates {int i => i + 42} into new F<Integer, Integer>() { public Integer f(Integer i) {return i + 42; }}. The latter will compile with any old Java. – Apocalisp Aug 12 at 17:44
right, it is a little frustrating indeed – dfa Aug 12 at 17:44
vote up 1 vote down

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

link|flag
vote up 2 vote down

Jambda is another FP-library. From the documentation:

Jambda is an attempt to provide the Java(TM) world with tools and concepts from functional programming (FP).

The goals are several:

  • To provide Java programmers with expressive FP constructs
  • To provide a bridge for Java programmers into the FP-world
  • To see how far Java and generics can be stretched

This document is an attempt to introduce Java programmers into the FP world, and at the same time explain some (or most) of the features in Jambda.

link|flag
vote up 4 vote down

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

link|flag
vote up 3 vote down

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!

link|flag
vote up 8 vote down

Functional Java is one that's worth taking a look at and FunctionalJ is another.

link|flag
1  
+1 for FunctioanlJ – dfa Aug 12 at 16:42
1  
+1 for Functional Java – Apocalisp Aug 12 at 16:46
So .. which one? Also, for the lazy among us, can they be used without Java closures? (Assuming I only want a library, not something that forces me to use a different compiler) – ripper234 Aug 12 at 17:30
2  
Functional Java is just a library, but it works with the BGGA closure syntax if you want to use that. – Apocalisp Aug 12 at 17:41

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.