Re: Naming Scala Operators

Posted by Stephan Ewen on
URL: http://deprecated-apache-flink-user-mailing-list-archive.369.s1.nabble.com/Naming-Scala-Operators-tp7p12.html

We also thought at some point in time to use the textual representation of the lambda / function name for the name.

Through the Macros, we should have access to the AST and shoul dbe able to call "toString()" on it.

For example, teh name could then be:
  - Lambda:  (a: Int, b: Int) => a + b 
  - Referencing a function: "computeSum"