Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

New posts in c++20

Type trait that returns the template parameter of a template function

Generic function using std::span doesn't compile

c++ c++20 std-span

How are virtual constexpr function possible?

check if elements of a range can be moved?

c++ c++20

C++20: Standard-compliant way of getting the size of the allocation std::allocate_shared performs

Can C++20 `constinit` waive the need for nifty counter idiom?

C++ Lambda with template

c++ templates lambda c++20

Providing constraints for a parameter pack

c++ c++20 c++-concepts

are constrained alias templates allowed?

c++ language-lawyer c++20

What are the requirements to make a lambda constexpr?

c++ lambda c++17 constexpr c++20

Template argument deduction and expression rules

How to correctly and elegant implement the apply function for structured binding?

Are circular "using namespace" directives allowed?

c++ namespaces c++20

Are c++20 iterators "convertible" to LegacyIterators?

template non-type template parameter

How to check whether elements of a range should be moved?

c++ c++20 std-ranges

Three way comparison replaces all others comparison operators except ==?

How can I use C++ concepts with type_traits?

Do likelihood attributes make sense with a single if statement?

c++ c++20 likely-unlikely

Enforcing a common interface with std::variant without inheritance

c++ c++20 variant