tmp/tmp43qhda3u/{from.md → to.md}
RENAMED
|
@@ -0,0 +1,20 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
**Table: `fmtflags` effects** <a id="ios.fmtflags">[ios.fmtflags]</a>
|
| 2 |
+
|
| 3 |
+
| Element | Effect(s) if set |
|
| 4 |
+
| ------------ | --------------------------------------------------------------------------------------------------------------------------------------- |
|
| 5 |
+
| `boolalpha` | insert and extract `bool` type in alphabetic format |
|
| 6 |
+
| `dec` | converts integer input or generates integer output in decimal base |
|
| 7 |
+
| `fixed` | generate floating-point output in fixed-point notation |
|
| 8 |
+
| `hex` | converts integer input or generates integer output in hexadecimal base |
|
| 9 |
+
| `internal` | adds fill characters at a designated internal point in certain generated output, or identical to `right` if no such point is designated |
|
| 10 |
+
| `left` | adds fill characters on the right (final positions) of certain generated output |
|
| 11 |
+
| `oct` | converts integer input or generates integer output in octal base |
|
| 12 |
+
| `right` | adds fill characters on the left (initial positions) of certain generated output |
|
| 13 |
+
| `scientific` | generates floating-point output in scientific notation |
|
| 14 |
+
| `showbase` | generates a prefix indicating the numeric base of generated integer output |
|
| 15 |
+
| `showpoint` | generates a decimal-point character unconditionally in generated floating-point output |
|
| 16 |
+
| `showpos` | generates a `+` sign in non-negative generated numeric output |
|
| 17 |
+
| `skipws` | skips leading whitespace before certain input operations |
|
| 18 |
+
| `unitbuf` | flushes output after each output operation |
|
| 19 |
+
| `uppercase` | replaces certain lowercase letters with their uppercase equivalents in generated output |
|
| 20 |
+
|