tmp/tmp3_dwrzaq/{from.md → to.md}
RENAMED
|
@@ -2,17 +2,17 @@
|
|
| 2 |
|
| 3 |
``` cpp
|
| 4 |
ostreambuf_iterator(ostream_type& s) noexcept;
|
| 5 |
```
|
| 6 |
|
| 7 |
-
*Requires:* `s.rdbuf()` shall not null pointer.
|
| 8 |
|
| 9 |
-
*Effects:* `
|
| 10 |
|
| 11 |
``` cpp
|
| 12 |
ostreambuf_iterator(streambuf_type* s) noexcept;
|
| 13 |
```
|
| 14 |
|
| 15 |
*Requires:* `s` shall not be a null pointer.
|
| 16 |
|
| 17 |
-
*Effects:*
|
| 18 |
|
|
|
|
| 2 |
|
| 3 |
``` cpp
|
| 4 |
ostreambuf_iterator(ostream_type& s) noexcept;
|
| 5 |
```
|
| 6 |
|
| 7 |
+
*Requires:* `s.rdbuf()` shall not be a null pointer.
|
| 8 |
|
| 9 |
+
*Effects:* Initializes `sbuf_` with `s.rdbuf()`.
|
| 10 |
|
| 11 |
``` cpp
|
| 12 |
ostreambuf_iterator(streambuf_type* s) noexcept;
|
| 13 |
```
|
| 14 |
|
| 15 |
*Requires:* `s` shall not be a null pointer.
|
| 16 |
|
| 17 |
+
*Effects:* Initializes `sbuf_` with `s`.
|
| 18 |
|