Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

New posts in stl

What are Containers/Adapters? C++

c++ stl containers adapter

What algorithms are used in C++11 std::sort in different STL implementations?

c++ algorithm sorting c++11 stl

Confused about std::runtime_error vs. std::logic_error

c++ boost stl exception

initializing std::string from char* without copy

Reverse map lookup

c++ stl map

Difference between hash_map and unordered_map?

c++ stl hashmap unordered-map

Why vector access operators are not specified as noexcept?

c++ exception c++11 stl noexcept

Is the std::set iteration order always ascending according to the C++ specification?

c++ stl set

Is std::vector or boost::vector thread safe?

c++ boost stl thread-safety std

array vs vector vs list

c++ arrays list stl vector

How can I make the map::find operation case insensitive?

What does the standard library guarantee about self move assignment?

c++ stl c++11 move-semantics

Using local classes with STL algorithms

c++ stl stl-algorithm

Generic vector of vectors in C++

c++ stl

Using std::map<K,V> where V has no usable default constructor

c++ stl map compile-time

C++ vector that *doesn't* initialize its members?

c++ stl vector

Why are C++ STL iostreams not "exception friendly"?

c++ exception stl iostream

STL vectors with uninitialized storage?

c++ optimization stl vector

Does vector::erase() on a vector of object pointers destroy the object itself?

c++ stl vector

Cleaning up an STL list/vector of pointers

c++ list vector stl