Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

New posts in std

std::ofstream, check if file exists before writing

c++ stream std fstream ofstream

How is std::tuple implemented?

c++ c++11 tuples std

Why does numeric_limits::min return a negative value for int but positive values for float/double?

c++ std numeric-limits

std::pair of references

c++ std

Add same value multiple times to std::vector (repeat)

c++ vector std

Is std::less supposed to allow comparison of unrelated pointers at compile-time?

How do I erase elements from STL containers?

c++ c++11 stl std

C++ STL map: is access time O(1)?

c++ data-structures c++11 std

How to use std::async on a member function?

c++ multithreading c++11 std

Conversion from boost::shared_ptr to std::shared_ptr?

c++ boost shared-ptr std

Is the C++ std::set thread-safe?

c++ stl std stdset

Broken c++ std libraries on macOS High Sierra 10.13

Is specialization of std::to_string for custom types allowed by the C++ standard?

std::vector resize downward

c++ vector resize std stdvector

How to efficiently compare two maps of strings in C++ only for a subset of the keys

c++ stl comparison maps std

Flattening iterator

c++ c++11 iterator std

Why can't you take the address of nullptr?

c++ c++11 std nullptr

Element at index in a std::set?

c++ set std

using BOOST_FOREACH with std::map

c++ boost foreach maps std

Why does the C++ standard algorithm "count" return a difference_type instead of size_t?

c++ std