Tagged Questions
The infix-operator tag has no wiki summary.
7
votes
1answer
504 views
Why can't I chain several Scala infix method calls
I am working on a DSL and I've run into a problem with using methods as infix operators in a chain. I'll just try to explain it with some code. I have a trait Term and case classes Literal and ...
5
votes
3answers
1k views
Scala match decomposition on infix operator
I'm trying to understand the implementation of Lists in Scala. In particular I'm trying to get my head around how you can write match expressions using an infix operator, for example:
a match {
...
0
votes
3answers
291 views
Is it possible to use the pipeline operator to call a method on a returned object?
Is it possible to call a method on a returned object using the pipeline infix operator?
Example, I have a .Net class (Class1) with a method (Method1). I can currently code it like this:
let myclass ...