tmp/tmpvmuczsve/{from.md → to.md}
RENAMED
|
@@ -65,9 +65,12 @@ template<class charT, class traits>
|
|
| 65 |
basic_ostream<charT, traits>& flush_emit(basic_ostream<charT, traits>& os);
|
| 66 |
```
|
| 67 |
|
| 68 |
*Effects:* Calls `os.flush()`. Then, if `os.rdbuf()` is a
|
| 69 |
`basic_syncbuf<charT, traits, Allocator>*`, called `buf` for the purpose
|
| 70 |
-
of exposition,
|
|
|
|
|
|
|
|
|
|
| 71 |
|
| 72 |
*Returns:* `os`.
|
| 73 |
|
|
|
|
| 65 |
basic_ostream<charT, traits>& flush_emit(basic_ostream<charT, traits>& os);
|
| 66 |
```
|
| 67 |
|
| 68 |
*Effects:* Calls `os.flush()`. Then, if `os.rdbuf()` is a
|
| 69 |
`basic_syncbuf<charT, traits, Allocator>*`, called `buf` for the purpose
|
| 70 |
+
of exposition, behaves as an unformatted output
|
| 71 |
+
function [[ostream.unformatted]] of `os`. After constructing a `sentry`
|
| 72 |
+
object, calls `buf->emit()`. If that call returns `false`, calls
|
| 73 |
+
`os.setstate(ios_base::badbit)`.
|
| 74 |
|
| 75 |
*Returns:* `os`.
|
| 76 |
|