@@ -29,16 +29,20 @@ Tested on following compilers:
29
29
30
30
``` cpp
31
31
// यूनिकोड
32
- static char const u8_orig [] = " \xE0\xA4\xAF\xE0\xA5\x82\xE0\xA4\xA8\xE0\xA4\xBF\xE0\xA4\x95\xE0\xA5\x8B\xE0\xA4\xA1 " ;
33
- using namespace ww898 ;
32
+ static char const u8s [] = " \xE0\xA4\xAF\xE0\xA5\x82\xE0\xA4\xA8\xE0\xA4\xBF\xE0\xA4\x95\xE0\xA5\x8B\xE0\xA4\xA1 " ;
33
+ using namespace ww898 ::utf ;
34
34
std::u16string u16;
35
- utf:: convz<utf::utf8, utf:: utf16>(u8_orig , std::back_inserter(u16));
35
+ convz<utf_selector_t<decltype( * u8s)>, utf16>(u8s , std::back_inserter(u16));
36
36
std::u32string u32;
37
- utf:: conv<utf:: utf16, utf::utf32 >(u16.begin(), u16.end(), std::back_inserter(u32));
37
+ conv<utf16, utf_selector_t<decltype(u32)::value_type> >(u16.begin(), u16.end(), std::back_inserter(u32));
38
38
std::vector<char > u8;
39
- utf::convz<utf::utf32, utf::utf8>(u32.begin(), std::back_inserter(u8));
40
- std::wstring wstr;
41
- utf::convz<utf::utf8, utf::utfw>(u8.begin(), std::back_inserter(wstr));
39
+ convz<utf32, utf8>(u32.data(), std::back_inserter(u8));
40
+ std::wstring uw;
41
+ conv<utf8, utfw>(u8s, u8s + sizeof(u8s), std::back_inserter(uw));
42
+ static_assert(is_utf_same<decltype(* u8s), decltype(u8)::value_type>::value, "Fail");
43
+ static_assert(1 ==
44
+ (is_utf_same<decltype(u16)::value_type, decltype(uw)::value_type>::value ? 1 : 0) +
45
+ (is_utf_same<decltype(u32)::value_type, decltype(uw)::value_type>::value ? 1 : 0), "Fail");
42
46
```
43
47
44
48
## Performance
@@ -237,33 +241,33 @@ UTF8 ==> UTFW : 0.340384930s (+196.02%)
237
241
238
242
#### MacOS High Sierra v10.13.6 (Clang v6.0.0)
239
243
``` cpp
240
- Running 489 test cases...
241
- sizeof wchar_t : 4
242
- UTFW: UTF32
243
- Resolution: 2793647583
244
- UTF8 ==> UTF8 : 0 .111039205s
245
- UTF8 ==> UTF16: 0 .143631552s
246
- UTF8 ==> UTF32: 0 .105463425s
247
- UTF8 ==> UTFW : 0 .105106640s
248
- UTF16 ==> UTF8 : 0 .158074631s
249
- UTF16 ==> UTF16: 0 .055528284s
250
- UTF16 ==> UTF32: 0 .063203264s
251
- UTF16 ==> UTFW : 0 .063167823s
252
- UTF32 ==> UTF8 : 0 .123977591s
253
- UTF32 ==> UTF16: 0 .061630976s
254
- UTF32 ==> UTF32: 0 .027633560s
255
- UTF32 ==> UTFW : 0 .029324893s
256
- UTFW ==> UTF8 : 0 .123948012s
257
- UTFW ==> UTF16: 0 .064873256s
258
- UTFW ==> UTF32: 0 .030606730s
259
- UTFW ==> UTFW : 0 .027596372s
260
- codecvt_utf8_utf16<char16_t >:
261
- UTF16 ==> UTF8 : 0 .151798551s (-3.97 %)
262
- UTF8 ==> UTF16: 0 .256203078s (+78.38 %)
263
- codecvt_utf8<wchar_t >:
264
- UTFW ==> UTF8 : 0 .137034385s (+10.56 %)
265
- UTF8 ==> UTFW : 0 .360953804s (+243.42 %)
266
-
244
+ Running 489 test cases...
245
+ sizeof wchar_t : 4
246
+ UTFW: UTF32
247
+ Resolution: 2793647583
248
+ UTF8 ==> UTF8 : 0 .111039205s
249
+ UTF8 ==> UTF16: 0 .143631552s
250
+ UTF8 ==> UTF32: 0 .105463425s
251
+ UTF8 ==> UTFW : 0 .105106640s
252
+ UTF16 ==> UTF8 : 0 .158074631s
253
+ UTF16 ==> UTF16: 0 .055528284s
254
+ UTF16 ==> UTF32: 0 .063203264s
255
+ UTF16 ==> UTFW : 0 .063167823s
256
+ UTF32 ==> UTF8 : 0 .123977591s
257
+ UTF32 ==> UTF16: 0 .061630976s
258
+ UTF32 ==> UTF32: 0 .027633560s
259
+ UTF32 ==> UTFW : 0 .029324893s
260
+ UTFW ==> UTF8 : 0 .123948012s
261
+ UTFW ==> UTF16: 0 .064873256s
262
+ UTFW ==> UTF32: 0 .030606730s
263
+ UTFW ==> UTFW : 0 .027596372s
264
+ codecvt_utf8_utf16<char16_t >:
265
+ UTF16 ==> UTF8 : 0 .151798551s (-3.97 %)
266
+ UTF8 ==> UTF16: 0 .256203078s (+78.38 %)
267
+ codecvt_utf8<wchar_t >:
268
+ UTFW ==> UTF8 : 0 .137034385s (+10.56 %)
269
+ UTF8 ==> UTFW : 0 .360953804s (+243.42 %)
270
+
267
271
*** No errors detected
268
272
```
269
273
0 commit comments