Tagged Questions
12
votes
2answers
2k views
What good are right-associative methods in Scala?
I've just started playing around with Scala, and I just learned about how methods can be made right-associative (as opposed to the more traditional left-associativity common in imperative ...
1
vote
4answers
46 views
What are the ramifications of right-to-left and left-to-right associativity in C based languages?
I'm in the process of writing a scripting language and I want to copy the (pretty well standardized) C order of operations.
One thing that I never had a firm grasp of as a formal concept though is ...