| I/O manipulators | ||||
| Print functions(C++23) | ||||
| C-style I/O | ||||
| Buffers | ||||
(C++23) | ||||
(C++98/26*) | ||||
(C++20) | ||||
| Streams | ||||
| Abstractions | ||||
| File I/O | ||||
| String I/O | ||||
| Array I/O | ||||
(C++23) | ||||
(C++23) | ||||
(C++23) | ||||
(C++98/26*) | ||||
(C++98/26*) | ||||
(C++98/26*) | ||||
| Synchronized Output | ||||
(C++20) | ||||
| Types | ||||
| Error category interface | ||||
(C++11) | ||||
(C++11) |
| Floating-point formatting | |||||||||||||||||||||||||||||||
| |||||||||||||||||||||||||||||||
| Integer formatting | |||||||||||||||||||||||||||||||
| Boolean formatting | |||||||||||||||||||||||||||||||
| Field width and fill control | |||||||||||||||||||||||||||||||
| Other formatting | |||||||||||||||||||||||||||||||
| Whitespace processing | |||||||||||||||||||||||||||||||
| Output flushing | |||||||||||||||||||||||||||||||
|
| ||||||||||||||||||||||||||||||
| Status flags manipulation | |||||||||||||||||||||||||||||||
| Time and money I/O | |||||||||||||||||||||||||||||||
| Quoted manipulator | |||||||||||||||||||||||||||||||
(C++14) | |||||||||||||||||||||||||||||||
Defined in header <ostream> | ||
template<class CharT,class Traits> std::basic_ostream<CharT, Traits>& emit_on_flush(std::basic_ostream<CharT, Traits>& os); | (1) | (since C++20) |
template<class CharT,class Traits> std::basic_ostream<CharT, Traits>& noemit_on_flush(std::basic_ostream<CharT, Traits>& os); | (2) | (since C++20) |
Ifos.rdbuf() actually points to astd::basic_syncbuf<CharT, Traits, Allocator>buf, toggles whether it emits (i.e., transmits data to the underlying stream buffer) when flushed:
Otherwise, these manipulators have no effect.
This is an output-only I/O manipulator, it may be called with an expression such asout<< std::emit_on_flush for anyout of typestd::basic_ostream.
Contents |
| os | - | reference to output stream |
os (reference to the stream after manipulation)
| This section is incomplete Reason: no example |
| changes the current emit-on-sync policy (public member function of std::basic_syncbuf<CharT,Traits,Allocator>)[edit] |