tmp/tmpfi9g002r/{from.md → to.md}
RENAMED
|
@@ -3,47 +3,47 @@
|
|
| 3 |
``` cpp
|
| 4 |
charT do_decimal_point() const;
|
| 5 |
```
|
| 6 |
|
| 7 |
*Returns:* The radix separator to use in case `do_frac_digits()` is
|
| 8 |
-
greater than zero.[^
|
| 9 |
|
| 10 |
``` cpp
|
| 11 |
charT do_thousands_sep() const;
|
| 12 |
```
|
| 13 |
|
| 14 |
*Returns:* The digit group separator to use in case `do_grouping()`
|
| 15 |
-
specifies a digit grouping pattern.[^
|
| 16 |
|
| 17 |
``` cpp
|
| 18 |
string do_grouping() const;
|
| 19 |
```
|
| 20 |
|
| 21 |
*Returns:* A pattern defined identically as, but not necessarily equal
|
| 22 |
-
to, the result of `numpunct<charT>::do_grouping()`.[^
|
| 23 |
|
| 24 |
``` cpp
|
| 25 |
string_type do_curr_symbol() const;
|
| 26 |
```
|
| 27 |
|
| 28 |
-
*Returns:* A string to use as the currency identifier symbol.[^
|
| 29 |
|
| 30 |
``` cpp
|
| 31 |
string_type do_positive_sign() const;
|
| 32 |
string_type do_negative_sign() const;
|
| 33 |
```
|
| 34 |
|
| 35 |
*Returns:* `do_positive_sign()` returns the string to use to indicate a
|
| 36 |
-
positive monetary value;[^
|
| 37 |
use to indicate a negative value.
|
| 38 |
|
| 39 |
``` cpp
|
| 40 |
int do_frac_digits() const;
|
| 41 |
```
|
| 42 |
|
| 43 |
*Returns:* The number of digits after the decimal radix separator, if
|
| 44 |
-
any.[^
|
| 45 |
|
| 46 |
``` cpp
|
| 47 |
pattern do_pos_format() const;
|
| 48 |
pattern do_neg_format() const;
|
| 49 |
```
|
|
@@ -51,7 +51,7 @@ pattern do_neg_format() const;
|
|
| 51 |
*Returns:* The specializations required in
|
| 52 |
Table [[tab:localization.required.specializations]] ([[locale.category]]),
|
| 53 |
namely `moneypunct<char>`, `moneypunct<wchar_t>`,
|
| 54 |
`moneypunct<char, true>`, and `moneypunct<wchar_t, true>`, return an
|
| 55 |
object of type `pattern` initialized to
|
| 56 |
-
`{ symbol, sign, none, value }`.[^
|
| 57 |
|
|
|
|
| 3 |
``` cpp
|
| 4 |
charT do_decimal_point() const;
|
| 5 |
```
|
| 6 |
|
| 7 |
*Returns:* The radix separator to use in case `do_frac_digits()` is
|
| 8 |
+
greater than zero.[^22]
|
| 9 |
|
| 10 |
``` cpp
|
| 11 |
charT do_thousands_sep() const;
|
| 12 |
```
|
| 13 |
|
| 14 |
*Returns:* The digit group separator to use in case `do_grouping()`
|
| 15 |
+
specifies a digit grouping pattern.[^23]
|
| 16 |
|
| 17 |
``` cpp
|
| 18 |
string do_grouping() const;
|
| 19 |
```
|
| 20 |
|
| 21 |
*Returns:* A pattern defined identically as, but not necessarily equal
|
| 22 |
+
to, the result of `numpunct<charT>::do_grouping()`.[^24]
|
| 23 |
|
| 24 |
``` cpp
|
| 25 |
string_type do_curr_symbol() const;
|
| 26 |
```
|
| 27 |
|
| 28 |
+
*Returns:* A string to use as the currency identifier symbol.[^25]
|
| 29 |
|
| 30 |
``` cpp
|
| 31 |
string_type do_positive_sign() const;
|
| 32 |
string_type do_negative_sign() const;
|
| 33 |
```
|
| 34 |
|
| 35 |
*Returns:* `do_positive_sign()` returns the string to use to indicate a
|
| 36 |
+
positive monetary value;[^26] `do_negative_sign()` returns the string to
|
| 37 |
use to indicate a negative value.
|
| 38 |
|
| 39 |
``` cpp
|
| 40 |
int do_frac_digits() const;
|
| 41 |
```
|
| 42 |
|
| 43 |
*Returns:* The number of digits after the decimal radix separator, if
|
| 44 |
+
any.[^27]
|
| 45 |
|
| 46 |
``` cpp
|
| 47 |
pattern do_pos_format() const;
|
| 48 |
pattern do_neg_format() const;
|
| 49 |
```
|
|
|
|
| 51 |
*Returns:* The specializations required in
|
| 52 |
Table [[tab:localization.required.specializations]] ([[locale.category]]),
|
| 53 |
namely `moneypunct<char>`, `moneypunct<wchar_t>`,
|
| 54 |
`moneypunct<char, true>`, and `moneypunct<wchar_t, true>`, return an
|
| 55 |
object of type `pattern` initialized to
|
| 56 |
+
`{ symbol, sign, none, value }`.[^28]
|
| 57 |
|