Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

New posts in c++17

Can I avoid explicitly writing a constructor for each struct in a std::variant?

Is it guaranteed that template template parameter invoke user provided deduction guides

deduction guides and injected class names

c++ c++17 type-deduction

Using automatic deduction with unique_ptr and custom deleter

constexpr function with unused reference argument – gcc vs clang

Calling FFTW's in-place real-to-complex transform without violating strict aliasing rules

C++17 split constexpr string on comma and have the number of elements at compile time?

c++ c++17 metaprogramming

Why is default noexcept move constructor being accepted?

C++17 PMR:: Set number of blocks and their size in a unsynchronized_pool_resource

Using `void_t` to detect multiple inheritance type repetition errors

Do std::tuple and std::pair support aggregate initialization?

Is noexcept deduction allowed in class template partial specialization?

Is there any way to trace any compiler's template argument deduction?

c++ c++14 c++17

Does anything prevent std::optional::value_or() from being conditionally noexcept?

How to replace dynamic exception specifications: throw(...)

c++ exception c++17 throw

Objects of a class that does not have operator ==() are converted to another type

c++ c++17

`noexcept` behavior of `constexpr` functions

Multiple std::variant visit with variadic templated helper

Using template alias over template

c++ templates c++17

In requires parameter lists, can you introduce types that result in substitution failures?

c++ c++17 c++-concepts