From Jason Turner

[ostream.iterator.cons.des]

Diff to HTML by rtfpessoa

Files changed (1) hide show
  1. tmp/tmpeidxff4_/{from.md → to.md} +2 -14
tmp/tmpeidxff4_/{from.md → to.md} RENAMED
@@ -1,28 +1,16 @@
1
- #### `ostream_iterator` constructors and destructor <a id="ostream.iterator.cons.des">[[ostream.iterator.cons.des]]</a>
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
- ```
20
-
21
- *Effects:* Constructs a copy of `x`.
22
-
23
- ``` cpp
24
- ~ostream_iterator();
25
- ```
26
-
27
- *Effects:* The iterator is destroyed.
28
-
 
1
+ #### Constructors and destructor <a id="ostream.iterator.cons.des">[[ostream.iterator.cons.des]]</a>
2
 
3
  ``` cpp
4
  ostream_iterator(ostream_type& s);
5
  ```
6
 
7
  *Effects:* Initializes `out_stream` with `addressof(s)` and `delim` with
8
+ `nullptr`.
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