tmp/tmpd_rfvrab/{from.md → to.md}
RENAMED
|
@@ -1,33 +1,32 @@
|
|
| 1 |
### Header `<iomanip>` synopsis <a id="iomanip.syn">[[iomanip.syn]]</a>
|
| 2 |
|
| 3 |
``` cpp
|
| 4 |
namespace std {
|
| 5 |
-
|
| 6 |
-
|
| 7 |
-
|
| 8 |
-
|
| 9 |
-
|
| 10 |
-
|
| 11 |
-
|
| 12 |
-
template<class moneyT>
|
| 13 |
-
template<class
|
| 14 |
-
template<class charT>
|
| 15 |
-
template<class charT> T10 put_time(const struct tm* tmb, const charT* fmt);
|
| 16 |
|
| 17 |
template<class charT>
|
| 18 |
-
|
| 19 |
|
| 20 |
template<class charT, class traits, class Allocator>
|
| 21 |
-
|
| 22 |
\itcorr charT delim = charT('"'), charT escape = charT('\\'));
|
| 23 |
|
| 24 |
template<class charT, class traits, class Allocator>
|
| 25 |
-
|
| 26 |
\itcorr charT delim = charT('"'), charT escape = charT('\\'));
|
| 27 |
|
| 28 |
template<class charT, class traits>
|
| 29 |
-
|
| 30 |
\itcorr charT delim = charT('"'), charT escape = charT('\\'));
|
| 31 |
}
|
| 32 |
```
|
| 33 |
|
|
|
|
| 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,
|
| 21 |
\itcorr charT delim = charT('"'), charT escape = charT('\\'));
|
| 22 |
|
| 23 |
template<class charT, class traits, class Allocator>
|
| 24 |
+
unspecified quoted(basic_string<charT, traits, Allocator>& s,
|
| 25 |
\itcorr charT delim = charT('"'), charT escape = charT('\\'));
|
| 26 |
|
| 27 |
template<class charT, class traits>
|
| 28 |
+
unspecified quoted(basic_string_view<charT, traits> s,
|
| 29 |
\itcorr charT delim = charT('"'), charT escape = charT('\\'));
|
| 30 |
}
|
| 31 |
```
|
| 32 |
|