Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

New posts in stl

Why do sequential containers have both size_type and difference_type?

c++ types stl containers

C equivalent of C++ STL [duplicate]

VS2008 -> VS2010 leads to cryptic STL errors

How does overloading of const and non-const functions work?

STL containers on the stack and the heap

c++ stl memory-management

STL algorithms: Why no additional interface for containers (additional to iterator pairs)?

c++ insert into vector at known position

c++ stl vector insert

std::vector iterator invalidation

c++ stl vector iterator

Insert or push_back to end of a std::vector?

c++ performance c++11 stl insert

Why use rbegin() instead of end() - 1?

Does C++ provide a "triple" template, comparable to pair<T1, T2>? [duplicate]

c++ stl std-pair

Why there is no std::erase?

c++ stl

When would you use an std::auto_ptr instead of boost::shared_ptr?

Why is integer comparison faster then string comparison?

c++ string stl

Does `std::set` sort elements in every case? [duplicate]

c++ sorting stl set std

C++: vector to stringstream

std::copy to std::cout for std::pair

Is it meaningful to optimize i++ as ++i to avoid the temporary variable?

c++ stl

Adding types to the std namespace

c++ stl namespaces

Iterator to last element of std::vector using end()--

c++ c++11 vector stl