I know the differences between data, newtype and type very well. I am writing a small script that will build some sort of syntax tree. Almost all types have one constructor. I am avoiding type to enforce safety (multiple "different" types might end up having the same type in Haskell). I don't care about laziness/strictness in this case, nor do I care about performance (this part is by no means performance critical). I am mainly focused on style. I have three options:
- Use only
data. This feels OK, except that I have many types with only one constructor with one argument. The code looks some how wasteful... Although I don't care about the performance gain, but it just does not feel right. - Use only
newtype. This leads to a lot of ugliness with tuples in the case of multiple parameters. - Mix
dataandnewtypewhich somewhat look non-uniform and slightly annoying.. I'd rather have all types declared in a single consistent way.
I am in a dilemma of choosing between 1 and 3.