tmp/tmppzvrdp6n/{from.md → to.md}
RENAMED
|
@@ -0,0 +1,10 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
**Table: Integer conversions** <a id="facet.num.put.int">[facet.num.put.int]</a>
|
| 2 |
+
|
| 3 |
+
| State | `stdio` equivalent |
|
| 4 |
+
| -------------------------------------------- | ------------------ |
|
| 5 |
+
| `basefield == ios_base::oct` | `%o` |
|
| 6 |
+
| `(basefield == ios_base::hex) && !uppercase` | `%x` |
|
| 7 |
+
| `(basefield == ios_base::hex)` | `%X` |
|
| 8 |
+
| for a `signed` integral type | `%d` |
|
| 9 |
+
| for an `unsigned` integral type | `%u` |
|
| 10 |
+
|