1.2 KiB
1.2 KiB
[locale.money.put.general]
28 Text processing library [text]
28.3 Localization library [localization]
28.3.4 Standard locale categories [locale.categories]
28.3.4.7 The monetary category [category.monetary]
28.3.4.7.3 Class template money_put [locale.money.put]
28.3.4.7.3.1 General [locale.money.put.general]
namespace std {template<class charT, class OutputIterator = ostreambuf_iterator>class money_put : public locale::facet {public:using char_type = charT; using iter_type = OutputIterator; using string_type = basic_string; explicit money_put(size_t refs = 0);
iter_type put(iter_type s, bool intl, ios_base& f, char_type fill, long double units) const; iter_type put(iter_type s, bool intl, ios_base& f, char_type fill, const string_type& digits) const; static locale::id id; protected:~money_put(); virtual iter_type do_put(iter_type, bool, ios_base&, char_type fill, long double units) const; virtual iter_type do_put(iter_type, bool, ios_base&, char_type fill, const string_type& digits) const; };}