Explore >> Select a destination


You are here

hackingcpp.com
| | linus.dev
100.0 parsecs away

Travel
| |
| | www.foonathan.net
90.9 parsecs away

Travel
| | This post discusses some C++ propsals regarding allocators. It also gives more explanatation to the reasons behind the propagate_on_container_XX traits and talks about node sizes.
| | www.cppstories.com
47.6 parsecs away

Travel
| | In C++11, we got a handy way to initialize various containers. Rather than using push_back() or insert() several times, you can leverage a single constructor by taking an initializer list. For example, with a vector of strings, you can write: std::vector vec { "abc", "xyz", "***" }; We can also write expressions like: for (auto x : {1, 2, 3}) cout << x << ", "; The above code samples use std::initializer_list and (some compiler support) to hold the values and pass them around. Let's understa......
| | joecmarshall.com
177.5 parsecs away

Travel
| Developer and Author from Austin, TX.