Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

New posts in c++-concepts

C++20 Template Template Concept Syntax

Why is the concept in template template argument not verified?

Overloading static and non-static member function with constraint

Concept with multiple template arguments

C++, concepts not working with unsigned integers as a result type?

c++ c++-concepts

Why does std::visit in an unsatisfied concept cause a compile error in gcc

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

Why is a std::list<int> not sortable?

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

Is gcc wrongly evaluating std::declval in this concept definition?

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

Why does boost::multi_array's ConstMultiArrayConcept have a NumDims template argument?

In concept definitions, are substitution failures allowed outside of a requires expression?

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

C++ concept with friend-like access

c++ friend c++17 c++-concepts

Why can a `constexpr` function produce different results at compile- and run-time?

Overloading functions with concepts

In requires parameter lists, can you introduce types that result in substitution failures?

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

What's the relationship between C++ "concept" and duck typing?

Use of 'auto [...] 'before deduction of 'auto' with recursive, concept-based function template

Why isn't this class specialization using a concept accepted?

What's so controversial about AFTs (Abbreviated Function Templates)?

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

How to implement the generalized form of std::same_as (i.e. for more than two type parameters) that is agnostic to parameter order?