I’ve found very useful script for viewing STL containers under GDB here is link. Also i duplicated them here :
Here is “False sharing” example, you can try it in VS with enabled OpenMP flag. Also if you enable speed optimization for compiler single thread version will be faster, but you can see false sharing effect too.
You can use rvalues for creating move semantics - remove copy constructors for temporaries. Example: