Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

New posts in c++-concepts

How do I restrict fold expressions with C++ 20 requirements/concepts?

Concept to define type A to be equal to type B, if B exists

Can concept checking be delayed till class instantiation in C++?

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

How can I use a concept as a template parameter?

c++ c++-concepts

C++ Concepts with multiple template arguments

c++ templates c++-concepts

Is there a way to use a using-declaration inside a requires-expression

How to use decltype(T::member) for a member that might not exist in T

How to write a Character type concept?

Why can't we specialize concepts?

Creating an Iterator with C++20 Concepts for custom container

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

C++20 concepts how to define existence of a function with arguments?

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

Why doesn't C++20 use `requires` to restrict the T for atomic<T>?

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

Why don't string_view and span constructors use C++20 concepts?

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

How to specialize a method template using concepts?

Implementing std::iter_­difference_­t

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

Variadic concept constraints

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

Is there a C++20 way to detect if a type is an instantiation of a template using just concepts and requires()?

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

Concept with multiple template parameters

c++ c++-concepts

Passing both 2D array and vector of vectors to the template function