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