vote up 5 vote down star
1

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.

flag

57% 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 at 21:09

1 Answer

vote up 1 vote down

Check the answers to these other questions:

This is a fairly popular question.

link|flag

Your Answer

Get an OpenID
or

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