Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

New posts in c++20

Does std::(customization point) invoke the most appropriate overload?

How to use a C++ requires clause in a concept to require a member variable to satisfy a concept constraint?

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

How to define a concept of a object that is can be structured binding?

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

Compile-time debugging in C++

C++: How do I compose multiple concepts?

Why does C++20 std::condition_variable not support std::stop_token?

Does ranges::lower_bound have different requirements for the comparison than std::lower_bound?

c++ c++20

In which context default argument of immediate function is substituted in C++20 (on source location example)?

c++20 ranges library, how to make conditional operator work?

c++ c++20 std-ranges

Must destructor be just available (public) or fully valid for default initialized class members?

Assignment operator of std::variant of custom type with deleted special member functions?

error: failed to read compiled module: No such file or directory

c++ gcc module g++ c++20

Template argument deduction in case of designated initializers in C++

Interpreting C++20 standard description of ITER_TRAITS

c++ language-lawyer c++20

Is this correct: std::views::reverse on infinite range?

Why is there no overload for printing `std::byte`?

How to make a concept fail with a custom error message (C++20)

Why can't a prvalue of array type be converted to the same type using static_cast?

c++ language-lawyer c++20

what is the usecase for explicit (bool)

c++ c++20 explicit

Why can't I declare a concept at class scope?

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