The C++ Standard Library, and its namespace.
Is it valid to have a std::pair of references ? In particular, are there issues with the assignment operator ? According …
c++ stdI am working with 2 libraries. One takes in and returns std::strings while the other uses std::vector<unsigned …
c++ string vector std unsigned-charIs there more beyond advance takes negative numbers?
c++ c++11 stdI have some code that dynamically allocates a new std::thread from the C++11 <thread> header, like this: …
c++ multithreading c++11 std stdthreadAs my usually used C++ compilers allow variable-length arrays (eg. arrays depending on runtime size), I wonder if there is …
c++ std variable-length-arrayI know it is possible to truncate a file with std::fstream fs(mypath, std::fstream::out | std::fstream::trunc); …
c++ std fstreamI am learning about smart pointers (std::auto_ptr) and just read here and here that smart pointers (std::auto_…
c++ pointers std smart-pointers auto-ptrSuppose I have: stl::map<std::string, Foo> myMap; is the following function thread safe? myMap["xyz"] ? I.…
c++ multithreading dictionary std c++-standard-libraryI'm trying to debug a program that has no source code available, and I need to look at what it …
c++ stl gdb std c++-standard-library