Skip site navigation (1)Skip section navigation (2)

FreeBSD Manual Pages

  
 
  

home | help
std::flush_emit(3)	      C++ Standard Libary	    std::flush_emit(3)

NAME
       std::flush_emit - std::flush_emit

Synopsis
	  Defined in header <ostream>
	  template< class CharT, class Traits >
	  std::basic_ostream<CharT,	       Traits>&		   flush_emit(
       (since C++20)
	  std::basic_ostream<CharT, Traits>& os	);

	  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().

	  This is an output-only I/O manipulator, it may be called with	an ex-
       pression	such as
	  out << std::flush_emit for any out of	type std::basic_ostream.

Parameters
	  os - reference to output stream

Return value
	  os (reference	to the stream after manipulation)

Example
	   This	section	is incomplete
	   Reason: no example

See also
	  flush	synchronizes with the underlying storage device
		(public	member function	of std::basic_ostream<CharT,Traits>)

http://cppreference.com		  2022.07.31		    std::flush_emit(3)

Want to link to this manual page? Use this URL:
<https://man.freebsd.org/cgi/man.cgi?query=std::flush_emit&sektion=3&manpath=FreeBSD+Ports+15.0>

home | help