From Jason Turner

[depr.locale.category]

Diff to HTML by rtfpessoa

Files changed (1) hide show
  1. tmp/tmpulf74hgg/{from.md → to.md} +26 -0
tmp/tmpulf74hgg/{from.md → to.md} RENAMED
@@ -0,0 +1,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 table [[locale.category.facets]] of
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 table [[locale.spec]] of [[locale.category]].
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 specialization
22
+ `codecvt<char16_t, char, mbstate_t>` converts between the UTF-16 and
23
+ UTF-8 encoding forms, and the specialization
24
+ `codecvt<char32_t, char, mbstate_t>` converts between the UTF-32 and
25
+ UTF-8 encoding forms.
26
+