On Sunday, 25 June 2017 at 12:10:02 UTC, Timon Gehr wrote:
The path of least resistance is to use existing language
constructs, i.e.
out result => assert(result > 0)
Andrei
This would face quite some resistance, on the following grounds:
out(result){ assert(result > 0); } // exists
out result => assert(result > 0) // more of the same
out(result; result > 0) // better
I also imagine we'll end up seeing quite a lot of:
out( ; __result > 0)
...even though `__result` is still undocumented, because it's
DRY. That's actually an incentive, IMO, to go ahead and document
it. It's just tighter.