tmp/tmpssmz84va/{from.md → to.md}
RENAMED
|
@@ -0,0 +1,18 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
##### Type `ios_base::seekdir` <a id="ios.seekdir">[[ios.seekdir]]</a>
|
| 2 |
+
|
| 3 |
+
``` cpp
|
| 4 |
+
using seekdir = T4;
|
| 5 |
+
```
|
| 6 |
+
|
| 7 |
+
The type `seekdir` is an enumerated type [[enumerated.types]] that
|
| 8 |
+
contains the elements indicated in [[ios.seekdir]].
|
| 9 |
+
|
| 10 |
+
**Table: `seekdir` effects** <a id="ios.seekdir">[ios.seekdir]</a>
|
| 11 |
+
|
| 12 |
+
| Element | Meaning |
|
| 13 |
+
| ------- | --------------------------------------------------------------------------------------- |
|
| 14 |
+
| `beg` | request a seek (for subsequent input or output) relative to the beginning of the stream |
|
| 15 |
+
| `cur` | request a seek relative to the current position within the sequence |
|
| 16 |
+
| `end` | request a seek relative to the current end of the sequence |
|
| 17 |
+
|
| 18 |
+
|