From Jason Turner

[fpos.general]

Diff to HTML by rtfpessoa

Files changed (1) hide show
  1. tmp/tmpdxu4pohr/{from.md → to.md} +16 -0
tmp/tmpdxu4pohr/{from.md → to.md} RENAMED
@@ -0,0 +1,16 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ #### General <a id="fpos.general">[[fpos.general]]</a>
2
+
3
+ ``` cpp
4
+ namespace std {
5
+ template<class stateT> class fpos {
6
+ public:
7
+ // [fpos.members], members
8
+ stateT state() const;
9
+ void state(stateT);
10
+
11
+ private:
12
+ stateT st; // exposition only
13
+ };
14
+ }
15
+ ```
16
+