tmp/tmpx31zo829/{from.md → to.md}
RENAMED
|
@@ -1,20 +1,24 @@
|
|
| 1 |
### Header `<iomanip>` synopsis <a id="iomanip.syn">[[iomanip.syn]]</a>
|
| 2 |
|
| 3 |
``` cpp
|
| 4 |
namespace std {
|
|
|
|
| 5 |
unspecified resetiosflags(ios_base::fmtflags mask);
|
| 6 |
unspecified setiosflags (ios_base::fmtflags mask);
|
| 7 |
unspecified setbase(int base);
|
| 8 |
template<class charT> unspecified setfill(charT c);
|
| 9 |
unspecified setprecision(int n);
|
| 10 |
unspecified setw(int n);
|
|
|
|
|
|
|
| 11 |
template<class moneyT> unspecified get_money(moneyT& mon, bool intl = false);
|
| 12 |
template<class moneyT> unspecified put_money(const moneyT& mon, bool intl = false);
|
| 13 |
template<class charT> unspecified get_time(tm* tmb, const charT* fmt);
|
| 14 |
template<class charT> unspecified put_time(const tm* tmb, const charT* fmt);
|
| 15 |
|
|
|
|
| 16 |
template<class charT>
|
| 17 |
unspecified quoted(const charT* s, charT delim = charT('"'), charT escape = charT('\\'));
|
| 18 |
|
| 19 |
template<class charT, class traits, class Allocator>
|
| 20 |
unspecified quoted(const basic_string<charT, traits, Allocator>& s,
|
|
|
|
| 1 |
### Header `<iomanip>` synopsis <a id="iomanip.syn">[[iomanip.syn]]</a>
|
| 2 |
|
| 3 |
``` cpp
|
| 4 |
namespace std {
|
| 5 |
+
// [std.manip], standard manipulators
|
| 6 |
unspecified resetiosflags(ios_base::fmtflags mask);
|
| 7 |
unspecified setiosflags (ios_base::fmtflags mask);
|
| 8 |
unspecified setbase(int base);
|
| 9 |
template<class charT> unspecified setfill(charT c);
|
| 10 |
unspecified setprecision(int n);
|
| 11 |
unspecified setw(int n);
|
| 12 |
+
|
| 13 |
+
// [ext.manip], extended manipulators
|
| 14 |
template<class moneyT> unspecified get_money(moneyT& mon, bool intl = false);
|
| 15 |
template<class moneyT> unspecified put_money(const moneyT& mon, bool intl = false);
|
| 16 |
template<class charT> unspecified get_time(tm* tmb, const charT* fmt);
|
| 17 |
template<class charT> unspecified put_time(const tm* tmb, const charT* fmt);
|
| 18 |
|
| 19 |
+
// [quoted.manip], quoted manipulators
|
| 20 |
template<class charT>
|
| 21 |
unspecified quoted(const charT* s, charT delim = charT('"'), charT escape = charT('\\'));
|
| 22 |
|
| 23 |
template<class charT, class traits, class Allocator>
|
| 24 |
unspecified quoted(const basic_string<charT, traits, Allocator>& s,
|