tmp/tmp5wls1je3/{from.md → to.md}
RENAMED
|
@@ -1,6 +1,6 @@
|
|
| 1 |
-
##### Virtual functions <a id="facet.num.put.virtuals">[[facet.num.put.virtuals]]</a>
|
| 2 |
|
| 3 |
``` cpp
|
| 4 |
iter_type do_put(iter_type out, ios_base& str, char_type fill, long val) const;
|
| 5 |
iter_type do_put(iter_type out, ios_base& str, char_type fill, long long val) const;
|
| 6 |
iter_type do_put(iter_type out, ios_base& str, char_type fill, unsigned long val) const;
|
|
@@ -79,11 +79,12 @@ floating-point conversion specifier as indicated in
|
|
| 79 |
|
| 80 |
**Table: Floating-point conversions** <a id="facet.num.put.fp">[facet.num.put.fp]</a>
|
| 81 |
|
| 82 |
| State | `stdio` equivalent |
|
| 83 |
| ---------------------------------------------------------------------- | ------------------ |
|
| 84 |
-
| `floatfield == ios_base::fixed`
|
|
|
|
| 85 |
| `floatfield == ios_base::scientific && !uppercase` | `%e` |
|
| 86 |
| `floatfield == ios_base::scientific` | `%E` |
|
| 87 |
| `floatfield == (ios_base::fixed | ios_base::scientific) && !uppercase` | `%a` |
|
| 88 |
| `floatfield == (ios_base::fixed | ios_base::scientific)` | `%A` |
|
| 89 |
| `!uppercase` | `%g` |
|
|
|
|
| 1 |
+
###### Virtual functions <a id="facet.num.put.virtuals">[[facet.num.put.virtuals]]</a>
|
| 2 |
|
| 3 |
``` cpp
|
| 4 |
iter_type do_put(iter_type out, ios_base& str, char_type fill, long val) const;
|
| 5 |
iter_type do_put(iter_type out, ios_base& str, char_type fill, long long val) const;
|
| 6 |
iter_type do_put(iter_type out, ios_base& str, char_type fill, unsigned long val) const;
|
|
|
|
| 79 |
|
| 80 |
**Table: Floating-point conversions** <a id="facet.num.put.fp">[facet.num.put.fp]</a>
|
| 81 |
|
| 82 |
| State | `stdio` equivalent |
|
| 83 |
| ---------------------------------------------------------------------- | ------------------ |
|
| 84 |
+
| `floatfield == ios_base::fixed && !uppercase` | `%f` |
|
| 85 |
+
| `floatfield == ios_base::fixed` | `%F` |
|
| 86 |
| `floatfield == ios_base::scientific && !uppercase` | `%e` |
|
| 87 |
| `floatfield == ios_base::scientific` | `%E` |
|
| 88 |
| `floatfield == (ios_base::fixed | ios_base::scientific) && !uppercase` | `%a` |
|
| 89 |
| `floatfield == (ios_base::fixed | ios_base::scientific)` | `%A` |
|
| 90 |
| `!uppercase` | `%g` |
|