Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Is their an equivalent to C#'s Expression API in scala?

For example, I would like to have a lambda like this:

(Foo) => Foo.bar

and be able to access "bar" in the function it is passed to.

share|improve this question

4 Answers

up vote 9 down vote accepted

This is not supported by Scala. ScalaQL: Language-Integrated Database Queries for Scala describes a LINQ-like functionality in Scala:

While it is possible for Microsoft to simply extend their language with this particular feature, lowly application developers are not so fortunate. For exam- ple, there is no way for anyone (outside of Sun Microsystems) to implement any form of LINQ within Java because of the language modications which would be required. We faced a similar problem attempting to implement LINQ in Scala.

Fortunately, Scala is actually powerful enough in and of itself to implement a form of LINQ even without adding support for expression trees. Through a combination of operator overloading, implicit conversions, and controlled call- by-name semantics, we have been able to achieve the same eect without making any changes to the language itself.

share|improve this answer
1  
Yes, but the author did not release their source code; moreover, that paper lacks quite a few details needed for a complete implementation - they don't even write the actual interface of their library. Supporting flatMap (which is used in none of the examples) is for instance tricky. – Blaisorblade Oct 8 '11 at 13:18

There is an experimental scala.reflect.Code.lift which might be of interest, but the short answer is no, Scala does not have access to the AST in any form (expression trees are a subset of C#'s AST).

share|improve this answer

It's not quite clear to me what you want. If you want a function that returns a getter for a field, you can do that quite easily:

class Holder(var s: String) { }
class StringSaver(f: Holder => (() => String), h: Holder) {
  val getter = f(h)
  def lookAtString = getter()
}

val held = new Holder("Hello")
val ss = new StringSaver((h: Holder) => (h.s _) , held)
println(ss.lookAtString)
held.s = "Bye now"
println(ss.lookAtString)

The key is to turn the getter h.s into a function via (h.s _).

share|improve this answer

No, to the best of my knowledge.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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