std::flush_emit
Min standard notice:
Header: <ostream>
Flushes the output sequence os as if by calling os.flush(). Then, if os.rdbuf() actually points to a std::basic_syncbuf<CharT, Traits, Allocator> buf, calls buf.emit().
# Declarations
template< class CharT, class Traits >
std::basic_ostream<CharT, Traits>& flush_emit( std::basic_ostream<CharT, Traits>& os );
(since C++20)
# Parameters
os: reference to output stream
# Return value
os (reference to the stream after manipulation)
# Example
This section is incompleteReason: no example