tmp/tmplhfe6c_i/{from.md → to.md}
RENAMED
|
@@ -3,25 +3,25 @@
|
|
| 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 |
|
|
@@ -35,19 +35,21 @@ specified by ISO 4217 followed by a space. — *end note*]
|
|
| 35 |
string_type do_positive_sign() const;
|
| 36 |
string_type do_negative_sign() const;
|
| 37 |
```
|
| 38 |
|
| 39 |
*Returns:* `do_positive_sign()` returns the string to use to indicate a
|
| 40 |
-
positive monetary value;[^
|
| 41 |
-
|
|
|
|
|
|
|
| 42 |
|
| 43 |
``` cpp
|
| 44 |
int do_frac_digits() const;
|
| 45 |
```
|
| 46 |
|
| 47 |
*Returns:* The number of digits after the decimal radix separator, if
|
| 48 |
-
any.[^
|
| 49 |
|
| 50 |
``` cpp
|
| 51 |
pattern do_pos_format() const;
|
| 52 |
pattern do_neg_format() const;
|
| 53 |
```
|
|
@@ -59,7 +61,7 @@ pattern do_neg_format() const;
|
|
| 59 |
- `moneypunct<wchar_t>`,
|
| 60 |
- `moneypunct<char, true>`, and
|
| 61 |
- `moneypunct<wchar_t, true>`,
|
| 62 |
|
| 63 |
return an object of type `pattern` initialized to
|
| 64 |
-
`{ symbol, sign, none, value }`.[^
|
| 65 |
|
|
|
|
| 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.[^20]
|
| 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.[^21]
|
| 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()`.[^22]
|
| 23 |
|
| 24 |
``` cpp
|
| 25 |
string_type do_curr_symbol() const;
|
| 26 |
```
|
| 27 |
|
|
|
|
| 35 |
string_type do_positive_sign() const;
|
| 36 |
string_type do_negative_sign() const;
|
| 37 |
```
|
| 38 |
|
| 39 |
*Returns:* `do_positive_sign()` returns the string to use to indicate a
|
| 40 |
+
positive monetary value;[^23]
|
| 41 |
+
|
| 42 |
+
`do_negative_sign()` returns the string to use to indicate a negative
|
| 43 |
+
value.
|
| 44 |
|
| 45 |
``` cpp
|
| 46 |
int do_frac_digits() const;
|
| 47 |
```
|
| 48 |
|
| 49 |
*Returns:* The number of digits after the decimal radix separator, if
|
| 50 |
+
any.[^24]
|
| 51 |
|
| 52 |
``` cpp
|
| 53 |
pattern do_pos_format() const;
|
| 54 |
pattern do_neg_format() const;
|
| 55 |
```
|
|
|
|
| 61 |
- `moneypunct<wchar_t>`,
|
| 62 |
- `moneypunct<char, true>`, and
|
| 63 |
- `moneypunct<wchar_t, true>`,
|
| 64 |
|
| 65 |
return an object of type `pattern` initialized to
|
| 66 |
+
`{ symbol, sign, none, value }`.[^25]
|
| 67 |
|