From Jason Turner

[facet.numpunct.virtuals]

Diff to HTML by rtfpessoa

tmp/tmpa63q9lvq/{from.md → to.md} RENAMED
@@ -1,6 +1,6 @@
1
- ##### `numpunct` virtual functions <a id="facet.numpunct.virtuals">[[facet.numpunct.virtuals]]</a>
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 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
 
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