Standard library header <iomanip>
From cppreference.net
C++
Standard library headers
このヘッダは Input/output ライブラリの一部です。
関数 |
|
|
指定された ios_base フラグをクリアする
(関数) |
|
指定された
ios_base
フラグを設定する
(関数) |
|
|
整数I/Oで使用する基数を変更する
(関数) |
|
|
埋め文字を変更する
(関数テンプレート) |
|
|
浮動小数点精度を変更する
(関数) |
|
|
次の入出力フィールドの幅を変更する
(関数) |
|
|
(C++11)
|
通貨値を解析する
(関数テンプレート) |
|
(C++11)
|
通貨値をフォーマットして出力する
(関数テンプレート) |
|
(C++11)
|
指定されたフォーマットの日付/時刻値を解析する
(関数テンプレート) |
|
(C++11)
|
指定されたフォーマットに従って日付/時刻値をフォーマットして出力する
(関数テンプレート) |
|
(C++14)
|
埋め込みスペースを含む引用符付き文字列を挿入・抽出する
(関数テンプレート) |
概要
namespace std { /*未指定*/ resetiosflags(ios_base::fmtflags mask); /*未指定*/ setiosflags (ios_base::fmtflags mask); /*未指定*/ setbase(int base); template<class CharT> /*未指定*/ setfill(CharT c); /*未指定*/ setprecision(int n); /*未指定*/ setw(int n); template<class MoneyT> /*未指定*/ get_money(MoneyT& mon, bool intl = false); template<class MoneyT> /*未指定*/ put_money(const MoneyT& mon, bool intl = false); template<class CharT> /*未指定*/ get_time(tm* tmb, const CharT* fmt); template<class CharT> /*未指定*/ put_time(const tm* tmb, const CharT* fmt); template<class CharT> /*未指定*/ quoted(const CharT* s, CharT delim = CharT('"'), CharT escape = CharT('\\')); template<class CharT, class Traits, class Allocator> /*未指定*/ quoted(const basic_string<CharT, Traits, Allocator>& s, CharT delim = CharT('"'), CharT escape = CharT('\\')); template<class CharT, class Traits, class Allocator> /*未指定*/ quoted(basic_string<CharT, Traits, Allocator>& s, CharT delim = CharT('"'), CharT escape = CharT('\\')); template<class CharT, class Traits> /*未指定*/ quoted(basic_string_view<CharT, Traits> s, CharT delim = CharT('"'), CharT escape = CharT('\\')); }