tmp/tmppoo6g7j2/{from.md → to.md}
RENAMED
|
@@ -3,11 +3,11 @@
|
|
| 3 |
``` cpp
|
| 4 |
ostreambuf_iterator<charT,traits>&
|
| 5 |
operator=(charT c);
|
| 6 |
```
|
| 7 |
|
| 8 |
-
*Effects:* If `failed()` yields `false`, calls
|
| 9 |
otherwise has no effect.
|
| 10 |
|
| 11 |
*Returns:* `*this`.
|
| 12 |
|
| 13 |
``` cpp
|
|
@@ -26,7 +26,7 @@ ostreambuf_iterator<charT,traits>& operator++(int);
|
|
| 26 |
``` cpp
|
| 27 |
bool failed() const noexcept;
|
| 28 |
```
|
| 29 |
|
| 30 |
*Returns:* `true` if in any prior use of member `operator=`, the call to
|
| 31 |
-
|
| 32 |
|
|
|
|
| 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
|
|
|
|
| 26 |
``` cpp
|
| 27 |
bool failed() const noexcept;
|
| 28 |
```
|
| 29 |
|
| 30 |
*Returns:* `true` if in any prior use of member `operator=`, the call to
|
| 31 |
+
`sbuf_->sputc()` returned `traits::eof()`; or `false` otherwise.
|
| 32 |
|