Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

New posts in stl

Is there "magic" in the STL? [closed]

c++ stl std

How to correctly use std::reference_wrappers

Why do I have to always specify the range in STL's algorithm functions explicitly, even if I want to work on the whole container?

c++ algorithm c++11 stl

"Proper" way to store binary data with C++/STL

c++ stl binary-data

Will a call to std::vector::clear() set std::vector::capacity() to zero?

c++ stl vector

Checking whether a vector is empty

c++ stl vector

priority queue clear method

c++ stl

How to remove element not at top from priority_queue?

What's the best hashing algorithm to use on a stl string when using hash_map?

c++ windows performance stl hash

Use the auto keyword in C++ STL

c++ stl c++11

Multiply vector elements by a scalar value using STL

c++ stl vector element operation

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