Tagged Questions
From the functional Java website: Functional Java is an open source library that seeks to improve the experience of using the Java programming language in a production environment. The library implements several advanced programming concepts that assist in achieving composition-oriented ...
9
votes
1answer
344 views
What are your experiences using the functional java project?
I was reading the following question - How safe would it be to use functional-java to add closures to a Java production project? and I had been thinking of using the Functional Java project as well in ...
5
votes
2answers
248 views
Is there a good comparison between Functional Java and Guava?
I'd like to use either Functional Java or Guava (or less likely Scala) in a course I'll be teaching. Although there are lots of functional languages that run on the JVM I'd like to stick to something ...
5
votes
5answers
404 views
How safe would it be to use functional-java to add closures to a Java production project?
I would love to use closures in Java. I have read that they may or may not make it into Java 7. But an open-source project called functional-java has implemented functional features including ...
2
votes
3answers
175 views
Where can I find a repository containing functionaljava 3.0?
I would like to use functional Java 3.0 in a maven project. I have been googling a little, but I can't find valid information to include the corresponsding 'dependency' in my pom.xml.
Someone ...
1
vote
2answers
79 views
In FunctionalJava.List, what does “snoc” mean?
FunctionJava's List class has a snoc method that does append:
snoc
The description is as follows:
Appends (snoc) the given element to this list to produce a new list.
What does the word "snoc" ...
1
vote
2answers
85 views
Functional Java bind arity-2 Function (F2) to options
I understand the basic bind syntax for Option with functional java as
Option.some(2).bind(new F<Integer,Option<Integer>>(){
public Option<Integer>f(Integer i){
return ...