From Jason Turner

[ios.syn]

Diff to HTML by rtfpessoa

Files changed (1) hide show
  1. tmp/tmpqfl8kork/{from.md → to.md} +64 -0
tmp/tmpqfl8kork/{from.md → to.md} RENAMED
@@ -0,0 +1,64 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ### Header `<ios>` synopsis <a id="ios.syn">[[ios.syn]]</a>
2
+
3
+ ``` cpp
4
+ #include <iosfwd> // see [iosfwd.syn]
5
+
6
+ namespace std {
7
+ using streamoff = implementation-defined;
8
+ using streamsize = implementation-defined;
9
+ template <class stateT> class fpos;
10
+
11
+ class ios_base;
12
+ template <class charT, class traits = char_traits<charT>>
13
+ class basic_ios;
14
+
15
+ // [std.ios.manip], manipulators
16
+ ios_base& boolalpha (ios_base& str);
17
+ ios_base& noboolalpha(ios_base& str);
18
+
19
+ ios_base& showbase (ios_base& str);
20
+ ios_base& noshowbase (ios_base& str);
21
+
22
+ ios_base& showpoint (ios_base& str);
23
+ ios_base& noshowpoint(ios_base& str);
24
+
25
+ ios_base& showpos (ios_base& str);
26
+ ios_base& noshowpos (ios_base& str);
27
+
28
+ ios_base& skipws (ios_base& str);
29
+ ios_base& noskipws (ios_base& str);
30
+
31
+ ios_base& uppercase (ios_base& str);
32
+ ios_base& nouppercase(ios_base& str);
33
+
34
+ ios_base& unitbuf (ios_base& str);
35
+ ios_base& nounitbuf (ios_base& str);
36
+
37
+ // [adjustfield.manip], adjustfield
38
+ ios_base& internal (ios_base& str);
39
+ ios_base& left (ios_base& str);
40
+ ios_base& right (ios_base& str);
41
+
42
+ // [basefield.manip], basefield
43
+ ios_base& dec (ios_base& str);
44
+ ios_base& hex (ios_base& str);
45
+ ios_base& oct (ios_base& str);
46
+
47
+ // [floatfield.manip], floatfield
48
+ ios_base& fixed (ios_base& str);
49
+ ios_base& scientific (ios_base& str);
50
+ ios_base& hexfloat (ios_base& str);
51
+ ios_base& defaultfloat(ios_base& str);
52
+
53
+ // [error.reporting], error reporting
54
+ enum class io_errc {
55
+ stream = 1
56
+ };
57
+
58
+ template <> struct is_error_code_enum<io_errc> : public true_type { };
59
+ error_code make_error_code(io_errc e) noexcept;
60
+ error_condition make_error_condition(io_errc e) noexcept;
61
+ const error_category& iostream_category() noexcept;
62
+ }
63
+ ```
64
+