Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

New posts in c++17

Why does '[[fallthrough]]' need the square brackets '[[]]'?

c++ c++17

Why is a cast operator to std::optional ignored?

Variant visitation and common_type

c++ c++17 variant

std::function has performances issues, how to avoid it?

generating calls to lambdas with arbitrary number of parameters

Constexpr counter that works on GCC 8, and is not restricted to namespace scope

Is decltype of a non-static member function ill-formed?

Constexpr constructor fails to satisfy the requirements, but still constexpr. Why?

c++ language-lawyer c++17

if constexpr vs sfinae

c++ c++17 sfinae

Can I pattern-match a type without writing a custom trait class?

Get function arguments type as tuple

constructing string from NULL?

c++ string c++17

How to construct a type trait that can tell if one type's private methods can be called in another type's constructor?

c++ templates c++17 typetraits

how to make argument deduction work for derived class which using base class constructor?

c++ c++17 c++20

Will template parameter deduction for constructors available since C++17 allow explicitly specify some of the class template arguments?

Structured bindings width

Template template partial specialization only working with -std=c++1z with g++

c++ templates g++ c++17 clang++

structured binding with existing vars not possible?

Template argument deduction for class templates in C++17: am I doing it wrong?

c++ templates g++ c++17

Wrap pattern std::begin; return begin(c); into a function

c++ c++11 c++14 c++17