Hacker News new | ask | show | jobs
by davismwfl 3448 days ago
Not necessarily C++ 14, but you can look at the QT project(s), https://github.com/qtproject and at the boost, https://github.com/boostorg, libraries. They all have good samples, both simple and complex. Both can be a bit advanced, but no more then trying to study swift. And with boost each library can be viewed on its own so it isn't as complex as say QT etc.

There are probably lots of others, just two that came to mind. FWIW too, the latest QT is using more modern C++ and it has made things cleaner. But there are code in QT that can make you scratch your head in wonder, sometimes the code is that way for a valid reason other times, not so much (other than maybe convention).

1 comments

Looked through first project from Boost, alphabetically ordered, and found Accumulators. Seems a nice project where templates are used extensively. Thanks for ideas.