Explore >> Select a destination


You are here

blog.m-ou.se
| | thbecker.net
4.1 parsecs away

Travel
| | [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
4.9 parsecs away

Travel
| | 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
4.2 parsecs away

Travel
| | NP-Incompleteness:
| | baptiste-wicht.com
13.8 parsecs away

Travel
| 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