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 a reusable library here.
|
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 a reusable 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. |
|||||||||||||
|
|
scala is a functional programming language that is fully compatible with java (runs through the jvm). It offers a beautiful mix of object-oriented and functional techniques along with many improvements over java in generics and concurrency. Some even say it could replace java. |
||||
|
|
Java LibrariesThere are libraries that can help you do this, by already doing the legwork for you and hiding the arcane things: Mature / Established LibrariesMore Obscure / Experimental LibrariesThese will allow you to write Java code with a more functional approach and possibly more familiar syntax and semantic, as you'd expect from an FP-competent language. Within reason, that is. JVM LanguagesAnd obviously, you can implement a functional language on top of Java. So that you can then use that one as your FP language. Which is a bit of a higher-level of abstraction than what you asked for, but relatively within context (though I'm cheating a bit here, granted). For instance, check out: Quite Mature LanguagesLess Mature or More Obscure LanguagesFurther ReadingYou may also want to read or watch these articles or videos:
Taken from my P.SE answer to "Is Functional Programming Possible in Java?" |
||||
|
|
|
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. |
|||||||||||||||
|
|
I suggest bolts: http://bitbucket.org/stepancheg/bolts/ Unlike similar libraries, JDK standard collections are wrapped, and functional operations (map, filter, reduce etc.) are methods of collection interfaces. It is convenient. |
|||||||||||
|
|
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:
|
|||
|
|
|
Apache Commons has some functional-ish code in it. See for example, the Predicate interface. |
|||
|
|
|
Google Guava has functional:
|
|||
|
|
|
Or download OpenJDK 8 to try out Lambda expressions the way they will become in Java 8. Among others, the collection APIs are adjusted to support a functional style. See http://macgyverdev.blogspot.se/2012/10/functional-programming-in-java.html for examples of new collection APIs and comparisons with Guava, LambdaJ and FunctionalJava. |
|||
|
|
|
Although Functional Java is the most popular but i'll suggest you to try Google guava lib. |
|||
|
|