python (65.1k questions)
javascript (44.2k questions)
reactjs (22.7k questions)
java (20.8k questions)
c# (17.4k questions)
html (16.3k questions)
r (13.7k questions)
android (12.9k questions)
Functional equivalency in template constraints vs member function constraints
The latest standard draft N4910 has this example in [temp.over.link] regarding functional equivalence:
template<int I> concept C = true;
template<typename T> struct A {
void f() requires C...
user17732522
Votes: 0
Answers: 1
What are the execution contexts in P2300R4?
I'm referring to P2300R4, which is long and difficult, given my current level, but I want to understand more about it.
It refers to execution contexts since the beginning
§ 1. Introduction
This paper...
Enlico
Votes: 0
Answers: 0
In C++ is there a proposed type traits helper for "copying" reference category and cv-qualification?
For the SFINAE in the hypothetical call operator in this answer I need a type trait that "copies" reference category and const/volatile qualifications from one type to another:
template <...
jacobsa
Votes: 0
Answers: 1
How to make proxying const/ref/volatile qualification without duplication in C++?
Say I want to write some "proxy" object for a callable, e.g. to add some feature that happens before the wrapped callable is invoked. Further, say I want to be const-correct, so that the pro...
jacobsa
Votes: 0
Answers: 1