tmp/tmp17kb9xh6/{from.md → to.md}
RENAMED
|
@@ -15,19 +15,21 @@ explicit basic_ostringstream(
|
|
| 15 |
ios_base::openmode which = ios_base::out);
|
| 16 |
```
|
| 17 |
|
| 18 |
*Effects:* Initializes the base class with
|
| 19 |
`basic_ostream<charT, traits>(addressof(sb))` [[ostream]] and `sb` with
|
| 20 |
-
`basic_stringbuf<charT, traits, Allocator>(s, which | ios_base::out)`
|
|
|
|
| 21 |
|
| 22 |
``` cpp
|
| 23 |
basic_ostringstream(ios_base::openmode which, const Allocator& a);
|
| 24 |
```
|
| 25 |
|
| 26 |
*Effects:* Initializes the base class with
|
| 27 |
`basic_ostream<charT, traits>(addressof(sb))` [[ostream]] and `sb` with
|
| 28 |
-
`basic_stringbuf<charT, traits, Allocator>(which | ios_base::out, a)`
|
|
|
|
| 29 |
|
| 30 |
``` cpp
|
| 31 |
explicit basic_ostringstream(
|
| 32 |
basic_string<charT, traits, Allocator>&& s,
|
| 33 |
ios_base::openmode which = ios_base::out);
|
|
@@ -45,11 +47,12 @@ template<class SAlloc>
|
|
| 45 |
ios_base::openmode which, const Allocator& a);
|
| 46 |
```
|
| 47 |
|
| 48 |
*Effects:* Initializes the base class with
|
| 49 |
`basic_ostream<charT, traits>(addressof(sb))` [[ostream]] and `sb` with
|
| 50 |
-
`basic_stringbuf<charT, traits, Allocator>(s, which | ios_base::out, a)`
|
|
|
|
| 51 |
|
| 52 |
``` cpp
|
| 53 |
template<class SAlloc>
|
| 54 |
explicit basic_ostringstream(
|
| 55 |
const basic_string<charT, traits, SAlloc>& s,
|
|
@@ -58,11 +61,12 @@ template<class SAlloc>
|
|
| 58 |
|
| 59 |
*Constraints:* `is_same_v<SAlloc,Allocator>` is `false`.
|
| 60 |
|
| 61 |
*Effects:* Initializes the base class with
|
| 62 |
`basic_ostream<charT, traits>(addressof(sb))` [[ostream]] and `sb` with
|
| 63 |
-
`basic_stringbuf<charT, traits, Allocator>(s, which | ios_base::out)`
|
|
|
|
| 64 |
|
| 65 |
``` cpp
|
| 66 |
basic_ostringstream(basic_ostringstream&& rhs);
|
| 67 |
```
|
| 68 |
|
|
|
|
| 15 |
ios_base::openmode which = ios_base::out);
|
| 16 |
```
|
| 17 |
|
| 18 |
*Effects:* Initializes the base class with
|
| 19 |
`basic_ostream<charT, traits>(addressof(sb))` [[ostream]] and `sb` with
|
| 20 |
+
`basic_stringbuf<charT, traits, Allocator>(s, which | ios_base::out)`
|
| 21 |
+
[[stringbuf.cons]].
|
| 22 |
|
| 23 |
``` cpp
|
| 24 |
basic_ostringstream(ios_base::openmode which, const Allocator& a);
|
| 25 |
```
|
| 26 |
|
| 27 |
*Effects:* Initializes the base class with
|
| 28 |
`basic_ostream<charT, traits>(addressof(sb))` [[ostream]] and `sb` with
|
| 29 |
+
`basic_stringbuf<charT, traits, Allocator>(which | ios_base::out, a)`
|
| 30 |
+
[[stringbuf.cons]].
|
| 31 |
|
| 32 |
``` cpp
|
| 33 |
explicit basic_ostringstream(
|
| 34 |
basic_string<charT, traits, Allocator>&& s,
|
| 35 |
ios_base::openmode which = ios_base::out);
|
|
|
|
| 47 |
ios_base::openmode which, const Allocator& a);
|
| 48 |
```
|
| 49 |
|
| 50 |
*Effects:* Initializes the base class with
|
| 51 |
`basic_ostream<charT, traits>(addressof(sb))` [[ostream]] and `sb` with
|
| 52 |
+
`basic_stringbuf<charT, traits, Allocator>(s, which | ios_base::out, a)`
|
| 53 |
+
[[stringbuf.cons]].
|
| 54 |
|
| 55 |
``` cpp
|
| 56 |
template<class SAlloc>
|
| 57 |
explicit basic_ostringstream(
|
| 58 |
const basic_string<charT, traits, SAlloc>& s,
|
|
|
|
| 61 |
|
| 62 |
*Constraints:* `is_same_v<SAlloc,Allocator>` is `false`.
|
| 63 |
|
| 64 |
*Effects:* Initializes the base class with
|
| 65 |
`basic_ostream<charT, traits>(addressof(sb))` [[ostream]] and `sb` with
|
| 66 |
+
`basic_stringbuf<charT, traits, Allocator>(s, which | ios_base::out)`
|
| 67 |
+
[[stringbuf.cons]].
|
| 68 |
|
| 69 |
``` cpp
|
| 70 |
basic_ostringstream(basic_ostringstream&& rhs);
|
| 71 |
```
|
| 72 |
|