Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

New posts in c++17

What's the advantage of `std::optional` over `std::shared_ptr` and `std::unique_ptr`?

c++ optional c++17 stdoptional

Why does std::string_view::data not include a null terminator?

c++ stl c++17 string-view

Is it possible to ignore [[nodiscard]] in a special case?

c++ c++17 nodiscard

how to write a fold /sum function for C++ tuple?

c++ c++11 c++17 stdtuple

Why is sizeof(std::variant) the same size as a struct with the same members?

c++ unions c++17

Why isn't std::iota constexpr?

c++ constexpr c++17 iota

Are reference non-type template parameters deduced by decltype(auto) forwardable in case of template template parameter

In temp.deduct.partial, why is a parameter pack less specialized?

c++ templates c++17

Value category of const int variable captured by lambda

error assuming cast to type xxx from overloaded function on gcc [duplicate]

c++ c++17

Usage of for_each in the presence of exceptions? std::exception_list

Can auto placeholder be used to deduce function result in non-type template parameter?

A type trait to detect functors using C++17?

Does this code result in a materialized base prvalue, and should it compile?

Deduction guide and variadic templates

Correct behavior of built-in operator candidates of overload resolution in the operator expression context

QMake adding in extra "-std=gnu++11" when I use build kits that compile with Clang, which overides my .pro flag addition "-std=c++17"

Template variables with template argument deduction and default template parameters

C++17: Generic (multiple-inheritance based?) check for template in parameter pack

What is guaranteed with C++ std::atomic at the programmer level?