We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0211a3d commit 79dcca8Copy full SHA for 79dcca8
source/ranges.tex
@@ -2268,10 +2268,10 @@
2268
\end{codeblock}
2269
2270
\pnum
2271
-Let \exposid{container-appendable} be defined as follows:
+Let \exposid{container-append} be defined as follows:
2272
\begin{codeblock}
2273
-template<class Ref, class Container>
2274
-constexpr auto @\exposid{container-appendable}@(Container& c) { // \expos
+template<class Container>
+constexpr auto @\exposid{container-append}@(Container& c) { // \expos
2275
return [&c]<class Ref>(Ref&& ref) {
2276
if constexpr (requires { c.emplace_back(declval<Ref>()); })
2277
c.emplace_back(std::forward<Ref>(ref));
0 commit comments