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 |
+
|