Does the Java standard library have any functional data structures, like immutable Sets, Lists, etc., with functional update?
|
1
|
|||||||
|
|
|
Functional java has Sets, Lists and more interesting abstractions. |
||||||
|
|
|
If you are interested in collections manipulation in a functional style give a look to lambdaj |
||
|
|
|
|
It's always nice to see Google Collections plugged, but no, we do not have this. I don't know of any Java library that does. Inside Google, we implemented some functional List structures, and guess what? No one uses them. So they aren't likely to become open-sourced any time soon. |
||
|
|
|
|
Strings and numbers are immutable in a functional way, but most collections are not (the immutable collections throw exceptions on add, remove, etc). |
||
|
|
|
|
Take a look at Google collections. |
||
|
|
|
|
Well, there are two possible approaches to "changing" an immutable collection:
Clojure takes the latter approach, so it becomes fairly quick to create a lot of siblings of an original collection with minor corrections to each, with reasonable memory requirements. But most Java code tends to go for the first option. For what it's worth, Google has created a handful of collections that support functional-style programming: http://code.google.com/p/google-collections/ but I haven't looked at them in depth. |
||
|
|
|
|
You don't need scala. Just pass your collection into:
I just saw this from another SO question: Google's ImmutableSet from the docs:
edited to incorporate comment. |
||||||
|
|
|
Sounds like you're looking for Scala. It compiles to .class, so that's good enough, right? |
||
|
