- ostream[meta header]
<ostream>ヘッダでは、出力処理に関するクラスやマニピュレータ(の実体である関数)などが定義されている。
| 名前 | 説明 | 対応バージョン |
|---|---|---|
basic_ostream |
出力ストリーム (class template) | |
endl |
改行を出力し、バッファを出力して空にする (maniplator, function template) | |
ends |
ヌル文字を出力する (maniplator, function template) | |
flush |
バッファを出力して空にする (maniplator, function template) | |
flush_emit |
std::basic_osyncstreamをフラッシュし、保留中の出力を転送する (maniplator, function template) |
C++20 |
emit_on_flush |
std::basic_osyncstreamの同期時排出ポリシーをtrueにする (maniplator, function template) |
C++20 |
noemit_on_flush |
std::basic_osyncstreamの同期時排出ポリシーをfalseにする (maniplator, function template) |
C++20 |
- C++98