Explore >> Select a destination


You are here

hackingcpp.com
| | www.cppstories.com
12.5 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......
| | github.com
15.2 parsecs away

Travel
| | A cross-platform, linkable library implementation of Git that you can use in your application. - libgit2/libgit2
| | mariusbancila.ro
8.7 parsecs away

Travel
| | The Third Edition of my book, Modern C++ Programming Cookbook (ISBN 978-1835080542) has been published by Packt. The book can be ordered from Amazon and Packt.
| | perlhacks.com
24.8 parsecs away

Travel
| In 2011 I wrote a series of three articles about Modern Perl programming for Linux Format. They concentrated on DBIx::Class and Dancer.