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