
26 May
2010
26 May
'10
4:53 a.m.
How about various stateful ISO-2022-* family? Is conversion to/from locale like ja_JP.ISO-2022-JP supported?
Yes via to_utf<>(), from_utf<>() functions. But not via std::codecvt<>. As there is no way to preserve state. In any case, if your compiler's/OS codecvt<> facet supports such encodings then you can always use native codecvt. Artyom