tmp/tmpq58r74n5/{from.md → to.md}
RENAMED
|
@@ -3,15 +3,15 @@
|
|
| 3 |
``` cpp
|
| 4 |
istreambuf_iterator<charT,traits>&
|
| 5 |
istreambuf_iterator<charT,traits>::operator++();
|
| 6 |
```
|
| 7 |
|
| 8 |
-
*Effects:*
|
| 9 |
|
| 10 |
*Returns:* `*this`.
|
| 11 |
|
| 12 |
``` cpp
|
| 13 |
proxy istreambuf_iterator<charT,traits>::operator++(int);
|
| 14 |
```
|
| 15 |
|
| 16 |
-
*Returns:* `proxy(
|
| 17 |
|
|
|
|
| 3 |
``` cpp
|
| 4 |
istreambuf_iterator<charT,traits>&
|
| 5 |
istreambuf_iterator<charT,traits>::operator++();
|
| 6 |
```
|
| 7 |
|
| 8 |
+
*Effects:* `sbuf_->sbumpc()`.
|
| 9 |
|
| 10 |
*Returns:* `*this`.
|
| 11 |
|
| 12 |
``` cpp
|
| 13 |
proxy istreambuf_iterator<charT,traits>::operator++(int);
|
| 14 |
```
|
| 15 |
|
| 16 |
+
*Returns:* `proxy(sbuf_->sbumpc(), sbuf_)`.
|
| 17 |
|