tmp/tmpepys5j1j/{from.md → to.md}
RENAMED
|
@@ -2,17 +2,18 @@
|
|
| 2 |
|
| 3 |
``` cpp
|
| 4 |
ostream_iterator(ostream_type& s);
|
| 5 |
```
|
| 6 |
|
| 7 |
-
*Effects:* Initializes
|
|
|
|
| 8 |
|
| 9 |
``` cpp
|
| 10 |
ostream_iterator(ostream_type& s, const charT* delimiter);
|
| 11 |
```
|
| 12 |
|
| 13 |
-
*Effects:* Initializes
|
| 14 |
`delimiter`.
|
| 15 |
|
| 16 |
``` cpp
|
| 17 |
ostream_iterator(const ostream_iterator& x);
|
| 18 |
```
|
|
|
|
| 2 |
|
| 3 |
``` cpp
|
| 4 |
ostream_iterator(ostream_type& s);
|
| 5 |
```
|
| 6 |
|
| 7 |
+
*Effects:* Initializes `out_stream` with `addressof(s)` and `delim` with
|
| 8 |
+
null.
|
| 9 |
|
| 10 |
``` cpp
|
| 11 |
ostream_iterator(ostream_type& s, const charT* delimiter);
|
| 12 |
```
|
| 13 |
|
| 14 |
+
*Effects:* Initializes `out_stream` with `addressof(s)` and `delim` with
|
| 15 |
`delimiter`.
|
| 16 |
|
| 17 |
``` cpp
|
| 18 |
ostream_iterator(const ostream_iterator& x);
|
| 19 |
```
|