Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

New posts in c++17

C++17: Keep only some members when tuple unpacking

c++ tuples c++17

Cv-qualifications of prvalues (revisited)

Preparation for std::iterator Being Deprecated

Deprecated header <codecvt> replacement

c++ utf-8 c++17 utf-16 codecvt

Why is there no implicit conversion from std::string_view to std::string?

c++17 string-view

Initializing variables in an "if" statement

c++ c++17

Is it allowed for a compiler to optimize away a local volatile variable?

Understanding std::hardware_destructive_interference_size and std::hardware_constructive_interference_size

Is a pointer with the right address and type still always a valid pointer since C++17?

How to enable C++17 in CMake

c++ visual-studio cmake c++17

Why is GCC warning me about a fallthrough even when I use [[fallthrough]]?

Lambda implicit capture fails with variable declared from structured binding

Why is there no support for concatenating std::string and std::string_view?

c++ string c++17 string-view

When does type information flow backwards in C++?

Are the experimental features of modern C++ reliable for long-term projects?

How to efficiently get a `string_view` for a substring of `std::string`

c++ view c++17 stdstring

What are template deduction guides and when should we use them?

How to get the file size in bytes with C++17

What are the evaluation order guarantees introduced by C++17?

How does guaranteed copy elision work?

c++ c++17 copy-elision