Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

New posts in c++-concepts

What would be the proper implementation of a concept describing a raw pointer (to objects)?

How to restrict lambda parameter's parameter to only be a reference?

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

concepts return type requirement syntax two versus one template parm

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

How can I make a concept that accepts only vec3 types and exclude all other types?

c++ c++-concepts

Can a concept be checked against incomplete type

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

Can concepts(C++20) be used as a boolean?

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

What is this "template(bool Other)( requires ....) classname(...)" syntax in the ranges-v3 library?

How to determine if a Type supports printing or formatting using C++ standard lib?

Determine if a Type is formattable with given Format String at compile time

c++ c++-concepts fmt stdformat

Can a consteval lambda be used in concept requirements?

c++ c++-concepts

How to get the type of the values in a C++20 std::ranges range?

Why does a constructor which takes iterators require elements to be EmplaceConstructible?

c++ c++11 stl c++14 c++-concepts

How to write a C++ concept restricting the template to std::map and std::unordered_map

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

Concept based Template member functions overloads

why does ranges::view_interface<T>::size require a move constructor

How can I test whether a type is a range from which I can move elements?

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

Constraint a template parameter to only accept std::vector and std::list with C++20 concepts