Movatterモバイル変換


[0]ホーム

URL:


cppreference.com
Namespaces
Variants
    Actions

      std::flush_emit

      From cppreference.com
      <cpp‎ |io‎ |manip
       
       
       
      Input/output manipulators
      Floating-point formatting
      Integer formatting
      Boolean formatting
      Field width and fill control
      Other formatting
      Whitespace processing
      Output flushing
      flush_emit
      (C++20)  

      Status flags manipulation
      Time and money I/O
      (C++11)
      (C++11)
      (C++11)
      (C++11)
      Quoted manipulator
      (C++14)
       
      Defined in header<ostream>
      template<class CharT,class Traits>
      std::basic_ostream<CharT, Traits>& flush_emit(std::basic_ostream<CharT, Traits>& os);
      (since C++20)

      Flushes the output sequenceos as if by callingos.flush(). Then, ifos.rdbuf() actually points to astd::basic_syncbuf<CharT, Traits, Allocator>buf, callsbuf.emit().

      This is an output-only I/O manipulator, it may be called with an expression such asout<< std::flush_emit for anyout of typestd::basic_ostream.


      Contents

      [edit]Parameters

      os - reference to output stream

      [edit]Return value

      os (reference to the stream after manipulation)

      [edit]Example

      This section is incomplete
      Reason: no example

      [edit]See also

      synchronizes with the underlying storage device
      (public member function ofstd::basic_ostream<CharT,Traits>)[edit]
      Retrieved from "https://en.cppreference.com/mwiki/index.php?title=cpp/io/manip/flush_emit&oldid=99537"

      [8]ページ先頭

      ©2009-2025 Movatter.jp