Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

New posts in std

Mingw 'std::function' has not been declared?

c++ c++11 std sfml

trying to use std::get_time to parse YYMMDD and failing

c++ visual-c++ std

Signed and unsigned `rep` in `std::chrono` clocks

c++ std chrono

std::for_each ignoring default function argument

c++ boost std

C++11 std::is_convertible behaviour with private copy constructor

Populating a vector with known number of elements: specify its size in constructor or by using reserve method?

c++ vector std

How to copy data from `boost::scoped_array` to `std::vector`

c++ boost stl std

Convert std::ostream to std::string

c++ std

What is the difference between strtol and strtoul?

c std strtol

Error when checking if a tuple of references is default constructible

c++ c++11 std c++14 stdtuple

Why is the constructor of std::in_place_t defaulted and explicit?

How do you create a std::pair containing a std::atomic?

Save/Serialize boost or std regexes

c++ regex boost std

Should I reserve memory when using std::back_inserter

c++ std c++98

Is there a reason why std::make_shared/std::make_unique don't use list initialization?

c++ c++11 std shared-ptr

Do custom container iterators guarantee ADL to consider namespace std?

Difference between std::is_signed<T> and std::numeric_limits<T>::is_signed?

c++ c++11 std numeric-limits

What happens to an object instance after applying std::move

c++ std move-semantics

Implementing atomic<T>::store

c++ c++11 std stdatomic

Find first occurrence of a string from a vector<string>

c++ boost std