Does anyone know why the following code doesn't recognize ∙ as a valid infix operator?
object Main extends App {
val c = (I() ∙ I())
}
sealed abstract class Term
case class I() extends Term
case class ∙(x: Term, y: Term) extends Term
|
|
|
Define
Now Not sure what you are trying to achieve, though. |
||||
|
|
|
To put it simply, because it is not. It is an As an object, you can use it on pattern matches:
As a class, if it had two type parameters, it would use it on type declarations:
|
|||
|
|
|
This is not due to the use of the unicode symbol. There is no infix constructor syntax that I'm aware of. So if you want to create an object with an infix syntax you can do what Emil suggests (adding the
|
|||
|
|