From Jason Turner

[ios.openmode]

Diff to HTML by rtfpessoa

Files changed (1) hide show
  1. tmp/tmpkmy47qj1/{from.md → to.md} +21 -0
tmp/tmpkmy47qj1/{from.md → to.md} RENAMED
@@ -0,0 +1,21 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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 the
8
+ elements indicated in [[ios.openmode]].
9
+
10
+ **Table: `openmode` effects** <a id="ios.openmode">[ios.openmode]</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
+