We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
(const_)reference
1 parent 4abacae commit eb94afbCopy full SHA for eb94afb
source/strings.tex
@@ -3135,8 +3135,8 @@
3135
3136
\indexlibrarymember{front}{basic_string}%
3137
\begin{itemdecl}
3138
-constexpr const charT& front() const;
3139
-constexpr charT& front();
+constexpr const_reference front() const;
+constexpr reference front();
3140
\end{itemdecl}
3141
3142
\begin{itemdescr}
@@ -3151,8 +3151,8 @@
3151
3152
\indexlibrarymember{back}{basic_string}%
3153
3154
-constexpr const charT& back() const;
3155
-constexpr charT& back();
+constexpr const_reference back() const;
+constexpr reference back();
3156
3157
3158
0 commit comments