Does std::remove_cvref
replace std::decay
after C++20?
From this link, I cannot understand what this means:
C++20 will have a new trait
std::remove_cvref
that doesn't have undesirable effect ofstd::decay
on arrays
What is the undesirable effect of std::decay
?
Example and explanation, please!