tmp/tmpclwb01q6/{from.md → to.md}
RENAMED
|
@@ -1,26 +1,31 @@
|
|
| 1 |
## Deprecated locale category facets <a id="depr.locale.category">[[depr.locale.category]]</a>
|
| 2 |
|
| 3 |
The `ctype` locale category includes the following facets as if they
|
| 4 |
-
were specified in
|
| 5 |
-
[[locale.category]].
|
| 6 |
|
| 7 |
``` cpp
|
| 8 |
codecvt<char16_t, char, mbstate_t>
|
| 9 |
codecvt<char32_t, char, mbstate_t>
|
|
|
|
|
|
|
| 10 |
```
|
| 11 |
|
| 12 |
The `ctype` locale category includes the following facets as if they
|
| 13 |
-
were specified in
|
| 14 |
|
| 15 |
``` cpp
|
| 16 |
codecvt_byname<char16_t, char, mbstate_t>
|
| 17 |
codecvt_byname<char32_t, char, mbstate_t>
|
|
|
|
|
|
|
| 18 |
```
|
| 19 |
|
| 20 |
The following class template specializations are required in addition to
|
| 21 |
-
those specified in [[locale.codecvt]]. The
|
| 22 |
-
`codecvt<char16_t, char, mbstate_t>`
|
| 23 |
-
|
| 24 |
-
|
|
|
|
|
|
|
| 25 |
UTF-8 encoding forms.
|
| 26 |
|
|
|
|
| 1 |
## Deprecated locale category facets <a id="depr.locale.category">[[depr.locale.category]]</a>
|
| 2 |
|
| 3 |
The `ctype` locale category includes the following facets as if they
|
| 4 |
+
were specified in [[locale.category.facets]] of [[locale.category]].
|
|
|
|
| 5 |
|
| 6 |
``` cpp
|
| 7 |
codecvt<char16_t, char, mbstate_t>
|
| 8 |
codecvt<char32_t, char, mbstate_t>
|
| 9 |
+
codecvt<char16_t, char8_t, mbstate_t>
|
| 10 |
+
codecvt<char32_t, char8_t, mbstate_t>
|
| 11 |
```
|
| 12 |
|
| 13 |
The `ctype` locale category includes the following facets as if they
|
| 14 |
+
were specified in [[locale.spec]] of [[locale.category]].
|
| 15 |
|
| 16 |
``` cpp
|
| 17 |
codecvt_byname<char16_t, char, mbstate_t>
|
| 18 |
codecvt_byname<char32_t, char, mbstate_t>
|
| 19 |
+
codecvt_byname<char16_t, char8_t, mbstate_t>
|
| 20 |
+
codecvt_byname<char32_t, char8_t, mbstate_t>
|
| 21 |
```
|
| 22 |
|
| 23 |
The following class template specializations are required in addition to
|
| 24 |
+
those specified in [[locale.codecvt]]. The specializations
|
| 25 |
+
`codecvt<char16_t, char, mbstate_t>` and
|
| 26 |
+
`codecvt<char16_t, char8_t, mbstate_t>` convert between the UTF-16 and
|
| 27 |
+
UTF-8 encoding forms, and the specializations
|
| 28 |
+
`codecvt<char32_t, char, mbstate_t>` and
|
| 29 |
+
`codecvt<char32_t, char8_t, mbstate_t>` convert between the UTF-32 and
|
| 30 |
UTF-8 encoding forms.
|
| 31 |
|