New posts in stl

Can raw pointers be used instead of iterators with STL algorithms for containers with linear storage?

Why no emplacement iterators in C++11 or C++14?

Concise explanation of reference collapsing rules requested: (1) A& & -> A& , (2) A& && -> A& , (3) A&& & -> A& , and (4) A&& && -> A&&

Is it safe to assume that STL vector storage is always contiguous?

How to construct a std::string from a std::vector<string>?

Is std::pair<int, std::string> ordering well-defined?

STL containers element destruction order

does (w)ifstream support different encodings

What the heque is going on with the memory overhead of std::deque?

Thread safety of std::map for read-only operations

Why does a push_back on an std::list change a reverse iterator initialized with rbegin?

Capturing a time in milliseconds

What is the right approach when using STL container for median calculation?

Use of for_each on map elements

What do I get from front() of empty std container?

initializing std::string from char* without copy

Is there support in C++/STL for sorting objects by attribute?

What is the most efficient way to append one std::vector to the end of another?

how portable is end iterator decrement?

Reading and writing a std::vector into a file correctly