[OT] Is there a real alternative to exceptions ?

Kagamin spam at here.lot
Fri Jan 17 08:54:21 UTC 2025


Nullable having range interface, maybe you can just add error to 
the range contract?
```
V op(Range)(Range r)
{
	if(r.hasError)return r.error;
	...
}
```


More information about the Digitalmars-d mailing list