Hacker News new | ask | show | jobs
by sedatk 2197 days ago
You can, it's possible to address "missing values" with a default construct. Example:

  int x = default; // x becomes zero
  T x = default; // x becomes whatever the default value for struct is
1 comments

Then we're back to accessing that value being an enormous footgun, yes?