This is the definition for a new data type:
data Total a = Total a :+: Total a
|...
What does :+: mean in this type definition?
|
This is the definition for a new data type:
What does :+: mean in this type definition? |
|||
|
It is a data constructor written in infix form. You can have an operator as constructor if it begins with |
|||||||||||||||||||
|
:constructor for lists is just a special case of this. Perhaps you were thinking ofTypeOperators? – hammar Oct 5 '12 at 7:30TypeOperators. I wasn't aware using operators for data constructors was standard. It's very ugly. Usually ugly things are extensions :) – singpolyma Oct 5 '12 at 23:57