|
7379 | 7379 | basic_stringbuf() : basic_stringbuf(ios_base::in | ios_base::out) {}
|
7380 | 7380 | explicit basic_stringbuf(ios_base::openmode which);
|
7381 | 7381 | explicit basic_stringbuf(
|
7382 |
| - const basic_string<charT, traits, Allocator>& str, |
| 7382 | + const basic_string<charT, traits, Allocator>& s, |
7383 | 7383 | ios_base::openmode which = ios_base::in | ios_base::out);
|
7384 | 7384 | explicit basic_stringbuf(const Allocator& a)
|
7385 | 7385 | : basic_stringbuf(ios_base::in | ios_base::out, a) {}
|
|
8170 | 8170 | basic_istringstream() : basic_istringstream(ios_base::in) {}
|
8171 | 8171 | explicit basic_istringstream(ios_base::openmode which);
|
8172 | 8172 | explicit basic_istringstream(
|
8173 |
| - const basic_string<charT, traits, Allocator>& str, |
| 8173 | + const basic_string<charT, traits, Allocator>& s, |
8174 | 8174 | ios_base::openmode which = ios_base::in);
|
8175 | 8175 | basic_istringstream(ios_base::openmode which, const Allocator& a);
|
8176 | 8176 | explicit basic_istringstream(
|
|
8252 | 8252 | \indexlibrary{\idxcode{basic_istringstream}!constructor}%
|
8253 | 8253 | \begin{itemdecl}
|
8254 | 8254 | explicit basic_istringstream(
|
8255 |
| - const basic_string<charT, traits, Allocator>& str, |
| 8255 | + const basic_string<charT, traits, Allocator>& s, |
8256 | 8256 | ios_base::openmode which = ios_base::in);
|
8257 | 8257 | \end{itemdecl}
|
8258 | 8258 |
|
|
8262 | 8262 | Initializes the base class with
|
8263 | 8263 | \tcode{basic_istream<charT, traits>(addressof(sb))}\iref{istream}
|
8264 | 8264 | and \tcode{sb} with
|
8265 |
| -\tcode{basic_stringbuf<charT, traits, Allocator>(str, which | ios_base::in)}\linebreak(\ref{stringbuf.cons}). % avoid Overfull |
| 8265 | +\tcode{basic_stringbuf<charT, traits, Allocator>(s, which | ios_base::in)}\linebreak(\ref{stringbuf.cons}). % avoid Overfull |
8266 | 8266 | \end{itemdescr}
|
8267 | 8267 |
|
8268 | 8268 | \indexlibrary{\idxcode{basic_istringstream}!constructor}%
|
|
8494 | 8494 | basic_ostringstream() : basic_ostringstream(ios_base::out) {}
|
8495 | 8495 | explicit basic_ostringstream(ios_base::openmode which);
|
8496 | 8496 | explicit basic_ostringstream(
|
8497 |
| - const basic_string<charT, traits, Allocator>& str, |
| 8497 | + const basic_string<charT, traits, Allocator>& s, |
8498 | 8498 | ios_base::openmode which = ios_base::out);
|
8499 | 8499 | basic_ostringstream(ios_base::openmode which, const Allocator& a);
|
8500 | 8500 | explicit basic_ostringstream(
|
|
8577 | 8577 | \indexlibrary{\idxcode{basic_ostringstream}!constructor}%
|
8578 | 8578 | \begin{itemdecl}
|
8579 | 8579 | explicit basic_ostringstream(
|
8580 |
| - const basic_string<charT, traits, Allocator>& str, |
| 8580 | + const basic_string<charT, traits, Allocator>& s, |
8581 | 8581 | ios_base::openmode which = ios_base::out);
|
8582 | 8582 | \end{itemdecl}
|
8583 | 8583 |
|
|
8587 | 8587 | Initializes the base class with
|
8588 | 8588 | \tcode{basic_ostream<charT, traits>(addressof(sb))}\iref{ostream}
|
8589 | 8589 | and \tcode{sb} with
|
8590 |
| -\tcode{basic_stringbuf<charT, traits, Allocator>(str, which | ios_base::out)}\linebreak(\ref{stringbuf.cons}). % avoid Overfull |
| 8590 | +\tcode{basic_stringbuf<charT, traits, Allocator>(s, which | ios_base::out)}\linebreak(\ref{stringbuf.cons}). % avoid Overfull |
8591 | 8591 | \end{itemdescr}
|
8592 | 8592 |
|
8593 | 8593 | \indexlibrary{\idxcode{basic_ostringstream}!constructor}%
|
|
8826 | 8826 | basic_stringstream() : basic_stringstream(ios_base::out | ios_base::in) {}
|
8827 | 8827 | explicit basic_stringstream(ios_base::openmode which);
|
8828 | 8828 | explicit basic_stringstream(
|
8829 |
| - const basic_string<charT, traits, Allocator>& str, |
| 8829 | + const basic_string<charT, traits, Allocator>& s, |
8830 | 8830 | ios_base::openmode which = ios_base::out | ios_base::in);
|
8831 | 8831 | basic_stringstream(ios_base::openmode which, const Allocator& a);
|
8832 | 8832 | explicit basic_stringstream(
|
|
8861 | 8861 | basic_string<charT, traits, Allocator> str() &&;
|
8862 | 8862 | basic_string_view<charT, traits> view() const noexcept;
|
8863 | 8863 |
|
8864 |
| - void str(const basic_string<charT, traits, Allocator>& str); |
| 8864 | + void str(const basic_string<charT, traits, Allocator>& s); |
8865 | 8865 | template<class SAlloc>
|
8866 | 8866 | void str(const basic_string<charT, traits, SAlloc>& s);
|
8867 | 8867 | void str(basic_string<charT, traits, Allocator>&& s);
|
|
8912 | 8912 | \indexlibrary{\idxcode{basic_stringstream}!constructor}%
|
8913 | 8913 | \begin{itemdecl}
|
8914 | 8914 | explicit basic_stringstream(
|
8915 |
| - const basic_string<charT, traits, Allocator>& str, |
| 8915 | + const basic_string<charT, traits, Allocator>& s, |
8916 | 8916 | ios_base::openmode which = ios_base::out | ios_base::in);
|
8917 | 8917 | \end{itemdecl}
|
8918 | 8918 |
|
|
8924 | 8924 | and
|
8925 | 8925 | \tcode{sb}
|
8926 | 8926 | with
|
8927 |
| -\tcode{basic_string\-buf<charT, traits, Allocator>(str, which)}. |
| 8927 | +\tcode{basic_string\-buf<charT, traits, Allocator>(s, which)}. |
8928 | 8928 | \end{itemdescr}
|
8929 | 8929 |
|
8930 | 8930 | \indexlibrary{\idxcode{basic_stringstream}!constructor}%
|
|
0 commit comments