tmp/tmpi885m0iq/{from.md → to.md}
RENAMED
|
@@ -1,10 +1,10 @@
|
|
| 1 |
-
### The numeric punctuation facet <a id="facet.numpunct">[[facet.numpunct]]</a>
|
| 2 |
|
| 3 |
-
#### Class template `numpunct` <a id="locale.numpunct">[[locale.numpunct]]</a>
|
| 4 |
|
| 5 |
-
##### General <a id="locale.numpunct.general">[[locale.numpunct.general]]</a>
|
| 6 |
|
| 7 |
``` cpp
|
| 8 |
namespace std {
|
| 9 |
template<class charT>
|
| 10 |
class numpunct : public locale::facet {
|
|
@@ -93,11 +93,11 @@ e:
|
|
| 93 |
|
| 94 |
where the number of digits between is as specified by `do_grouping()`.
|
| 95 |
For parsing, if the portion contains no thousands-separators, no
|
| 96 |
grouping constraint is applied.
|
| 97 |
|
| 98 |
-
##### Members <a id="facet.numpunct.members">[[facet.numpunct.members]]</a>
|
| 99 |
|
| 100 |
``` cpp
|
| 101 |
char_type decimal_point() const;
|
| 102 |
```
|
| 103 |
|
|
@@ -120,11 +120,11 @@ string_type truename() const;
|
|
| 120 |
string_type falsename() const;
|
| 121 |
```
|
| 122 |
|
| 123 |
*Returns:* `do_truename()` or `do_falsename()`, respectively.
|
| 124 |
|
| 125 |
-
##### Virtual functions <a id="facet.numpunct.virtuals">[[facet.numpunct.virtuals]]</a>
|
| 126 |
|
| 127 |
``` cpp
|
| 128 |
char_type do_decimal_point() const;
|
| 129 |
```
|
| 130 |
|
|
@@ -162,11 +162,11 @@ string_type do_falsename() const;
|
|
| 162 |
`false`, respectively.
|
| 163 |
|
| 164 |
In the base class implementation these names are `"true"` and `"false"`,
|
| 165 |
or `L"true"` and `L"false"`.
|
| 166 |
|
| 167 |
-
#### Class template `numpunct_byname` <a id="locale.numpunct.byname">[[locale.numpunct.byname]]</a>
|
| 168 |
|
| 169 |
``` cpp
|
| 170 |
namespace std {
|
| 171 |
template<class charT>
|
| 172 |
class numpunct_byname : public numpunct<charT> {
|
|
|
|
| 1 |
+
#### The numeric punctuation facet <a id="facet.numpunct">[[facet.numpunct]]</a>
|
| 2 |
|
| 3 |
+
##### Class template `numpunct` <a id="locale.numpunct">[[locale.numpunct]]</a>
|
| 4 |
|
| 5 |
+
###### General <a id="locale.numpunct.general">[[locale.numpunct.general]]</a>
|
| 6 |
|
| 7 |
``` cpp
|
| 8 |
namespace std {
|
| 9 |
template<class charT>
|
| 10 |
class numpunct : public locale::facet {
|
|
|
|
| 93 |
|
| 94 |
where the number of digits between is as specified by `do_grouping()`.
|
| 95 |
For parsing, if the portion contains no thousands-separators, no
|
| 96 |
grouping constraint is applied.
|
| 97 |
|
| 98 |
+
###### Members <a id="facet.numpunct.members">[[facet.numpunct.members]]</a>
|
| 99 |
|
| 100 |
``` cpp
|
| 101 |
char_type decimal_point() const;
|
| 102 |
```
|
| 103 |
|
|
|
|
| 120 |
string_type falsename() const;
|
| 121 |
```
|
| 122 |
|
| 123 |
*Returns:* `do_truename()` or `do_falsename()`, respectively.
|
| 124 |
|
| 125 |
+
###### Virtual functions <a id="facet.numpunct.virtuals">[[facet.numpunct.virtuals]]</a>
|
| 126 |
|
| 127 |
``` cpp
|
| 128 |
char_type do_decimal_point() const;
|
| 129 |
```
|
| 130 |
|
|
|
|
| 162 |
`false`, respectively.
|
| 163 |
|
| 164 |
In the base class implementation these names are `"true"` and `"false"`,
|
| 165 |
or `L"true"` and `L"false"`.
|
| 166 |
|
| 167 |
+
##### Class template `numpunct_byname` <a id="locale.numpunct.byname">[[locale.numpunct.byname]]</a>
|
| 168 |
|
| 169 |
``` cpp
|
| 170 |
namespace std {
|
| 171 |
template<class charT>
|
| 172 |
class numpunct_byname : public numpunct<charT> {
|