From Jason Turner

[iomanip.syn]

Diff to HTML by rtfpessoa

Files changed (1) hide show
  1. tmp/tmpd_rfvrab/{from.md → to.md} +14 -15
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
- // 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<class 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
 
 
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