| 331 | } |
| 332 | |
| 333 | bool UTF16ToUTF32(std::u16string_view utf16, std::u32string& outUtf32) |
| 334 | { |
| 335 | return utfConvert(utf16, outUtf32, ConvertUTF16toUTF32); |
| 336 | } |
| 337 | |
| 338 | bool UTF32ToUTF8(std::u32string_view utf32, std::string& outUtf8) |
| 339 | { |
nothing calls this directly
no test coverage detected