Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

New posts in c++17

(Shared) mutex in C++

Make argument explicit?

c++ c++17 explicit

'for_each_n' is not a member of 'std' in C++17

c++ foreach c++17

Is it legal to use template class name in derived class without template arguments?

How to shadow existing variables when destructuring in C++?

how to convert C-style compile-time arrays to std::array

c++ arrays c++17

Sum the components of a tuple up by using std::get, std::tuple_size, std::tuple_element

C++ - Why is std::function<some_type_t, void> invalid?

c++ templates c++17 void

Can I exclude a number or subrange of numbers inside a range of random numbers in modern C++?

c++ c++11 random c++17

How to find out if integer_sequence contains given number in compile-time?

Force deleting std::shared_ptr in C++

Why isn't a reverse iterator a formal iterator category according to the C++17 standard?

c++ stl c++17

Are pointers to allocated memory outside object's lifetime "invalid pointer[s]" or "pointer[s] to an object"?

Why the equivalent representation of a range-for required to be updated? [duplicate]

c++ c++11 for-loop c++17