From Jason Turner

[iostream.format.overview]

Diff to HTML by rtfpessoa

Files changed (1) hide show
  1. tmp/tmpjkaf598k/{from.md → to.md} +0 -72
tmp/tmpjkaf598k/{from.md → to.md} RENAMED
@@ -1,72 +0,0 @@
1
- ### Overview <a id="iostream.format.overview">[[iostream.format.overview]]</a>
2
-
3
- \synopsis{Header \texttt{\<istream\>} synopsis}
4
-
5
- ``` cpp
6
- namespace std {
7
- template <class charT, class traits = char_traits<charT> >
8
- class basic_istream;
9
- typedef basic_istream<char> istream;
10
- typedef basic_istream<wchar_t> wistream;
11
-
12
- template <class charT, class traits = char_traits<charT> >
13
- class basic_iostream;
14
- typedef basic_iostream<char> iostream;
15
- typedef basic_iostream<wchar_t> wiostream;
16
-
17
- template <class charT, class traits>
18
- basic_istream<charT,traits>& ws(basic_istream<charT,traits>& is);
19
-
20
- template <class charT, class traits, class T>
21
- basic_istream<charT, traits>&
22
- operator>>(basic_istream<charT, traits>&& is, T& x);
23
- }
24
- ```
25
-
26
- ``` cpp
27
- namespace std {
28
- template <class charT, class traits = char_traits<charT> >
29
- class basic_ostream;
30
- typedef basic_ostream<char> ostream;
31
- typedef basic_ostream<wchar_t> wostream;
32
-
33
- template <class charT, class traits>
34
- basic_ostream<charT,traits>& endl(basic_ostream<charT,traits>& os);
35
- template <class charT, class traits>
36
- basic_ostream<charT,traits>& ends(basic_ostream<charT,traits>& os);
37
- template <class charT, class traits>
38
- basic_ostream<charT,traits>& flush(basic_ostream<charT,traits>& os);
39
-
40
- template <class charT, class traits, class T>
41
- basic_ostream<charT, traits>&
42
- operator<<(basic_ostream<charT, traits>&& os, const T& x);
43
- }
44
- ```
45
-
46
- ``` cpp
47
- namespace std {
48
- // types T1, T2, ... are unspecified implementation types
49
- T1 resetiosflags(ios_base::fmtflags mask);
50
- T2 setiosflags (ios_base::fmtflags mask);
51
- T3 setbase(int base);
52
- template<charT> T4 setfill(charT c);
53
- T5 setprecision(int n);
54
- T6 setw(int n);
55
- template <class moneyT> T7 get_money(moneyT& mon, bool intl = false);
56
- template <class moneyT> T8 put_money(const moneyT& mon, bool intl = false);
57
- template <class charT> T9 get_time(struct tm* tmb, const charT* fmt);
58
- template <class charT> T10 put_time(const struct tm* tmb, const charT* fmt);
59
-
60
- template <class charT>
61
- T11 quoted(const charT* s, charT delim=charT('"'), charT escape=charT('\\'));
62
-
63
- template <class charT, class traits, class Allocator>
64
- T12 quoted(const basic_string<charT, traits, Allocator>& s,
65
- charT delim=charT('"'), charT escape=charT('\\'));
66
-
67
- template <class charT, class traits, class Allocator>
68
- T13 quoted(basic_string<charT, traits, Allocator>& s,
69
- charT delim=charT('"'), charT escape=charT('\\'));
70
- }
71
- ```
72
-