tmp/tmpiedlm88w/{from.md → to.md}
RENAMED
|
@@ -1,7 +1,9 @@
|
|
| 1 |
#### `ctype<char>` specialization <a id="facet.ctype.special">[[facet.ctype.special]]</a>
|
| 2 |
|
|
|
|
|
|
|
| 3 |
``` cpp
|
| 4 |
namespace std {
|
| 5 |
template<>
|
| 6 |
class ctype<char> : public locale::facet, public ctype_base {
|
| 7 |
public:
|
|
@@ -45,12 +47,14 @@ namespace std {
|
|
| 45 |
};
|
| 46 |
}
|
| 47 |
```
|
| 48 |
|
| 49 |
A specialization `ctype<char>` is provided so that the member functions
|
| 50 |
-
on type `char` can be implemented inline.[^7]
|
| 51 |
-
|
|
|
|
|
|
|
| 52 |
|
| 53 |
##### Destructor <a id="facet.ctype.char.dtor">[[facet.ctype.char.dtor]]</a>
|
| 54 |
|
| 55 |
``` cpp
|
| 56 |
~ctype();
|
|
|
|
| 1 |
#### `ctype<char>` specialization <a id="facet.ctype.special">[[facet.ctype.special]]</a>
|
| 2 |
|
| 3 |
+
##### General <a id="facet.ctype.special.general">[[facet.ctype.special.general]]</a>
|
| 4 |
+
|
| 5 |
``` cpp
|
| 6 |
namespace std {
|
| 7 |
template<>
|
| 8 |
class ctype<char> : public locale::facet, public ctype_base {
|
| 9 |
public:
|
|
|
|
| 47 |
};
|
| 48 |
}
|
| 49 |
```
|
| 50 |
|
| 51 |
A specialization `ctype<char>` is provided so that the member functions
|
| 52 |
+
on type `char` can be implemented inline.[^7]
|
| 53 |
+
|
| 54 |
+
The *implementation-defined* value of member `table_size` is at least
|
| 55 |
+
256.
|
| 56 |
|
| 57 |
##### Destructor <a id="facet.ctype.char.dtor">[[facet.ctype.char.dtor]]</a>
|
| 58 |
|
| 59 |
``` cpp
|
| 60 |
~ctype();
|