Hacker News new | ask | show | jobs
by realrocker 4352 days ago
This is really old. C++, Java are mature languages. Scala hit 2.11 in March 2014, while Go version 1 was released in March 2012 and currently is at 1.3. Versions don't tell the whole story, but they do matter.
1 comments

On the other hand, this:

  // Step d:
  IntList::iterator back_pred_iter = back_preds[w].begin();
  IntList::iterator back_pred_end = back_preds[w].end();
  for (; back_pred_iter != back_pred_end; back_pred_iter++) {
    int v = *back_pred_iter;
    …
can now be written

  for (auto v : back_preds[w]) {
    …                                ,
hence you could argue that while C++ is certainly “mature” in a sense, it is far from converged.