up vote 9 down vote favorite
1
share [g+] share [fb]

Is there an equivalent of .net's Expression Trees that underly LINQ for the JVM? I would like to implement some LINQ like code structures in Scala and I am wondering if I have to roll my own expression tree library also.

Update: I am not interested in a linq equivalent itself. .net has a large set of expression tree tools that make it easy to dynamically compile code at runtime can have it be callable from your code. The project I want to undertake has no relation to databases. Expression tree's provide an easy way to describe code that operates on data.

If there is no library my other option I think is to create one that emits byte code.

link|improve this question

70% accept rate
For JAVA try Quare (codehaus). BUT, as long as JAVA doesn't support high order functions (functions as first class members) i don't believe these "libraries" will feel the real LINQ. – dz. Sep 25 '09 at 21:09
Steve - did you ever get anywhere with this? – MalcomTucker Jul 6 '10 at 17:18
No. We just went back to windows and used windows. For some stuff we used LLVM with c++ on unix. However we are isolating the java stuff and using .net for everything that requires dynamic codegen. – Steve Jul 6 '10 at 17:51
feedback

1 Answer

Check the answers to these other questions:

This is a fairly popular question.

link|improve this answer
4  
Thats also a fairly useless answer – MalcomTucker Jun 30 '10 at 21:13
feedback

Your Answer

 
or
required, but never shown

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