Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

New posts in stl

Simplest, safest way of holding a bunch of const char* in a set?

c++ stl

"stable_sort()ing" a STL <list> in C++

c++ list stl stable-sort

Has the STL changed much?

c++ stl

priority_queue<> comparison for pointers?

c++ templates stl

struct vs class as STL functor when using not2

c++ class stl struct

the patterns used in iterators

Why can't we have an immutable version of operator[] for map

c++ stl

Pointers into elements in a container

c++ stl pointers

Passing std::string in a library API

c++ stl std

How to negate a predicate function using operator ! in C++?

c++ stl

What exactly happens when a character is appended to a string literal with the '+' operator in C++?

c++ string stl

Declaring Dynamic 2D Vector in class

c++ stl vector

Is std::vector::size() allowed to require non-trivial computations? When would it make sense?

c++ stl vector std

How can I avoid using a const_cast with std::vector::erase() in C++?

c++ stl casting constants

C++: Adding automatically allocated objects to a std::vector

c++ object stl vector allocation

Standard way to make STL objects threadsafe?

Why does std::vector transfer its constness to the contained objects?

c++ stl vector constants

How to pass a structure to a STL map?

c++ stl map struct

Does moving an element from an STL container remove it from that container?

how to move an std::unique_ptr<> from one STL container to another?

c++ stl c++11