tmp/tmp2jt9uapk/{from.md → to.md}
RENAMED
|
@@ -4,18 +4,18 @@
|
|
| 4 |
explicit basic_ospanstream(std::span<charT> s,
|
| 5 |
ios_base::openmode which = ios_base::out);
|
| 6 |
```
|
| 7 |
|
| 8 |
*Effects:* Initializes the base class with
|
| 9 |
-
`basic_ostream<charT, traits>(addressof(sb))` and
|
| 10 |
`basic_spanbuf<charT, traits>(s, which | ios_base::out)`
|
| 11 |
[[spanbuf.cons]].
|
| 12 |
|
| 13 |
``` cpp
|
| 14 |
basic_ospanstream(basic_ospanstream&& rhs) noexcept;
|
| 15 |
```
|
| 16 |
|
| 17 |
-
*Effects:* Initializes the base class with `std::move(rhs)` and
|
| 18 |
-
with `std::move(rhs.sb)`. Next,
|
| 19 |
-
`basic_ostream<charT, traits>::set_rdbuf(addressof(sb))` is called
|
| 20 |
-
install the contained `basic_spanbuf`.
|
| 21 |
|
|
|
|
| 4 |
explicit basic_ospanstream(std::span<charT> s,
|
| 5 |
ios_base::openmode which = ios_base::out);
|
| 6 |
```
|
| 7 |
|
| 8 |
*Effects:* Initializes the base class with
|
| 9 |
+
`basic_ostream<charT, traits>(addressof(`*`sb`*`))` and *sb* with
|
| 10 |
`basic_spanbuf<charT, traits>(s, which | ios_base::out)`
|
| 11 |
[[spanbuf.cons]].
|
| 12 |
|
| 13 |
``` cpp
|
| 14 |
basic_ospanstream(basic_ospanstream&& rhs) noexcept;
|
| 15 |
```
|
| 16 |
|
| 17 |
+
*Effects:* Initializes the base class with `std::move(rhs)` and *sb*
|
| 18 |
+
with `std::move(rhs.`*`sb`*`)`. Next,
|
| 19 |
+
`basic_ostream<charT, traits>::set_rdbuf(addressof(`*`sb`*`))` is called
|
| 20 |
+
to install the contained `basic_spanbuf`.
|
| 21 |
|