Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

New posts in c++17

C++ overloading template on assigning value or callback function

c++ templates c++17

Making a variadic templete from another variadic template

C++17 fold expression syntax?

c++ c++17 fold

Why do these two code snippets have the same effect?

c++ c++17 decltype ternary

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