Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

New posts in c++17

Bug in Clang-12? "case value is not a constant expression"

c++ clang c++17 clang++

How could return map<int, variant>'s value by a function?

c++ dictionary c++17 variant

C++17 typealias removes the ability of class template argument deduction [duplicate]

c++ c++17 ctad

Different results between clang/gcc and MSVC for templated constructor in base class

Is there a way to have a compile time check, that all members of a class are compared within operator==

Will the standard library of C++ contains networking, string algorithms,... in future?

c++ c++17 c++20

Does returning a reference extend its lifetime too?

Can template variables be used as template parameters (similarly to class templates)?

c++ templates parameters c++17

What is the most efficient way to generate random strings in C++?

c++ string random c++17

Recursively generate tuple of all distinct types referenced by a struct

Template specialization for class wrappers

c++ c++17 c++20

Use of std::future vs. std::thread in grep clone

How to detect whether a class has no virtual base in C++17 at compile time?

c++ c++17 compile-time

How to find the constexpr max of variable number of constexpr std::arrays with a default value

Check if return value is consumed

c++ c++17

How to pass a rvalue reference parameter to a template operator() function in C++?