From Jason Turner

[ios::openmode]

Diff to HTML by rtfpessoa

Files changed (1) hide show
  1. tmp/tmpej2knuwf/{from.md → to.md} +0 -21
tmp/tmpej2knuwf/{from.md → to.md} RENAMED
@@ -1,21 +0,0 @@
1
- ##### Type `ios_base::openmode` <a id="ios::openmode">[[ios::openmode]]</a>
2
-
3
- ``` cpp
4
- using openmode = T3;
5
- ```
6
-
7
- The type `openmode` is a bitmask type ([[bitmask.types]]). It contains
8
- the elements indicated in Table  [[tab:iostreams.openmode.effects]].
9
-
10
- **Table: `openmode` effects** <a id="tab:iostreams.openmode.effects">[tab:iostreams.openmode.effects]</a>
11
-
12
- | Element | Effect(s) if set |
13
- | -------- | ----------------------------------------------------------------- |
14
- | `app` | seek to end before each write |
15
- | `ate` | open and seek to end immediately after opening |
16
- | `binary` | perform input and output in binary mode (as opposed to text mode) |
17
- | `in` | open for input |
18
- | `out` | open for output |
19
- | `trunc` | truncate an existing stream when opening |
20
-
21
-