tmp/tmpa63q9lvq/{from.md → to.md}
RENAMED
|
@@ -1,6 +1,6 @@
|
|
| 1 |
-
#####
|
| 2 |
|
| 3 |
``` cpp
|
| 4 |
char_type do_decimal_point() const;
|
| 5 |
```
|
| 6 |
|
|
@@ -16,16 +16,16 @@ required specializations return `’,’` or `L’,’`.
|
|
| 16 |
|
| 17 |
``` cpp
|
| 18 |
string do_grouping() const;
|
| 19 |
```
|
| 20 |
|
| 21 |
-
*Returns:* A
|
| 22 |
-
|
| 23 |
-
|
| 24 |
-
|
| 25 |
-
|
| 26 |
-
|
| 27 |
|
| 28 |
The required specializations return the empty string, indicating no
|
| 29 |
grouping.
|
| 30 |
|
| 31 |
``` cpp
|
|
|
|
| 1 |
+
##### Virtual functions <a id="facet.numpunct.virtuals">[[facet.numpunct.virtuals]]</a>
|
| 2 |
|
| 3 |
``` cpp
|
| 4 |
char_type do_decimal_point() const;
|
| 5 |
```
|
| 6 |
|
|
|
|
| 16 |
|
| 17 |
``` cpp
|
| 18 |
string do_grouping() const;
|
| 19 |
```
|
| 20 |
|
| 21 |
+
*Returns:* A `string` `vec` used as a vector of integer values, in which
|
| 22 |
+
each element `vec[i]` represents the number of digits[^13] in the group
|
| 23 |
+
at position `i`, starting with position 0 as the rightmost group. If
|
| 24 |
+
`vec.size() <= i`, the number is the same as group `(i - 1)`; if
|
| 25 |
+
`(i < 0 || vec[i] <= 0 || vec[i] == CHAR_MAX)`, the size of the digit
|
| 26 |
+
group is unlimited.
|
| 27 |
|
| 28 |
The required specializations return the empty string, indicating no
|
| 29 |
grouping.
|
| 30 |
|
| 31 |
``` cpp
|