From Jason Turner

[ostreambuf.iter.ops]

Diff to HTML by rtfpessoa

tmp/tmpygnqbxmz/{from.md → to.md} RENAMED
@@ -1,26 +1,25 @@
1
  #### `ostreambuf_iterator` operations <a id="ostreambuf.iter.ops">[[ostreambuf.iter.ops]]</a>
2
 
3
  ``` cpp
4
- ostreambuf_iterator<charT,traits>&
5
- operator=(charT c);
6
  ```
7
 
8
  *Effects:* If `failed()` yields `false`, calls `sbuf_->sputc(c)`;
9
  otherwise has no effect.
10
 
11
  *Returns:* `*this`.
12
 
13
  ``` cpp
14
- ostreambuf_iterator<charT,traits>& operator*();
15
  ```
16
 
17
  *Returns:* `*this`.
18
 
19
  ``` cpp
20
- ostreambuf_iterator<charT,traits>& operator++();
21
- ostreambuf_iterator<charT,traits>& operator++(int);
22
  ```
23
 
24
  *Returns:* `*this`.
25
 
26
  ``` cpp
 
1
  #### `ostreambuf_iterator` operations <a id="ostreambuf.iter.ops">[[ostreambuf.iter.ops]]</a>
2
 
3
  ``` cpp
4
+ ostreambuf_iterator& operator=(charT c);
 
5
  ```
6
 
7
  *Effects:* If `failed()` yields `false`, calls `sbuf_->sputc(c)`;
8
  otherwise has no effect.
9
 
10
  *Returns:* `*this`.
11
 
12
  ``` cpp
13
+ ostreambuf_iterator& operator*();
14
  ```
15
 
16
  *Returns:* `*this`.
17
 
18
  ``` cpp
19
+ ostreambuf_iterator& operator++();
20
+ ostreambuf_iterator& operator++(int);
21
  ```
22
 
23
  *Returns:* `*this`.
24
 
25
  ``` cpp