|
You are here |
blog.m-ou.se | ||
| | | | |
thbecker.net
|
|
| | | | | [AI summary] An educational article by Thomas Becker explaining the purpose and mechanics of C++11 rvalue references, move semantics, and perfect forwarding. | |
| | | | |
eyakubovich.github.io
|
|
| | | | | It's a simple task -- you want iterate over all the lines in a file and perform an action on each one. In Python it's as simple as:for line in open("somefile.txt"): print lineHow about C++11. How hard can it be? This stackoverflow post gives us a starting point. We... | |
| | | | |
www.kuniga.me
|
|
| | | | | NP-Incompleteness: | |
| | | | |
baptiste-wicht.com
|
|
| | | Variadic Templates C++11 introduced variadic template to the languages. This new feature allows to write template functions and classes taking an arbitrary number of template parameters. This a featur | ||