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