Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

New posts in c++11

How to remove an entry from a std::map using key?

c++11 stl containers

C++ Waiting for Multiple Threads

c++ multithreading c++11

Compare tuples of different sizes

c++ c++11 tuples

Converting std::vector container into an std::set using std::transform

c++ c++11

what does it mean by saying that union members can only be manipulted one at a time?

c++ c++11 visual-c++ unions

How can I initialize an std::vector of std::map items?

c++ c++11 dictionary vector stl

Simplest way to make std::thread exception safe

Trying to find the minimum element of 2D vector with lambda

c++ c++11 lambda std

how to use C++11 integral_constant::value_type()

c++11

What is the reason to we can not define friend function in local class?

c++ c++11 friend local-class

When does the compiler move/copy in C++?

c++ c++11

C++11: what is the proper way to migrate from old-style enum to enum class?

c++ casting c++11 enums

C++ std::move a pointer

how to correctly find out the return type of a lambda

c++ c++11

C++11 std::atomic_fetch_add vs __sync_fetch_and_add

c++ c++11

Assign to *this in constructor

c++ c++11

Smart pointers and derived classes

C++11: when move ctor/operator= is called?

c++ c++11