The old V0.8 curry syntax was a lot better for currying operators:
// V0.8
(+, 1 + 2);
// V0.16
(+)@(1 + 2);
For operator currying only, I think the old syntax should be optional. This would prevent a future change of converting operators to functions without parens, but I don't see that change being worthwhile.
The old V0.8 curry syntax was a lot better for currying operators:
For operator currying only, I think the old syntax should be optional. This would prevent a future change of converting operators to functions without parens, but I don't see that change being worthwhile.