From Jason Turner

[iomanip.syn]

Diff to HTML by rtfpessoa

Files changed (1) hide show
  1. tmp/tmp32nopagz/{from.md → to.md} +33 -0
tmp/tmp32nopagz/{from.md → to.md} RENAMED
@@ -0,0 +1,33 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ### Header `<iomanip>` synopsis <a id="iomanip.syn">[[iomanip.syn]]</a>
2
+
3
+ ``` cpp
4
+ namespace std {
5
+ // types T1, T2, ... are unspecified implementation types
6
+ T1 resetiosflags(ios_base::fmtflags mask);
7
+ T2 setiosflags (ios_base::fmtflags mask);
8
+ T3 setbase(int base);
9
+ template<charT> T4 setfill(charT c);
10
+ T5 setprecision(int n);
11
+ T6 setw(int n);
12
+ template <class moneyT> T7 get_money(moneyT& mon, bool intl = false);
13
+ template <class moneyT> T8 put_money(const moneyT& mon, bool intl = false);
14
+ template <class charT> T9 get_time(struct tm* tmb, const charT* fmt);
15
+ template <class charT> T10 put_time(const struct tm* tmb, const charT* fmt);
16
+
17
+ template <class charT>
18
+ T11 quoted(const charT* s, charT delim = charT('"'), charT escape = charT('\\'));
19
+
20
+ template <class charT, class traits, class Allocator>
21
+ T12 quoted(const basic_string<charT, traits, Allocator>& s,
22
+ \itcorr charT delim = charT('"'), charT escape = charT('\\'));
23
+
24
+ template <class charT, class traits, class Allocator>
25
+ T13 quoted(basic_string<charT, traits, Allocator>& s,
26
+ \itcorr charT delim = charT('"'), charT escape = charT('\\'));
27
+
28
+ template <class charT, class traits>
29
+ T14 quoted(basic_string_view<charT, traits> s,
30
+ \itcorr charT delim = charT('"'), charT escape = charT('\\'));
31
+ }
32
+ ```
33
+