std::flush_emit

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

# Return value

os (reference to the stream after manipulation)

# Example

This section is incompleteReason: no example

# See also