| 253 | } |
| 254 | |
| 255 | bool UTF16ToUTF32(const std::u16string &utf16, std::u32string &outUtf32) { //NOLINT |
| 256 | return utfConvert(utf16, outUtf32, ConvertUTF16toUTF32); |
| 257 | } |
| 258 | |
| 259 | bool UTF32ToUTF8(const std::u32string &utf32, ccstd::string &outUtf8) { //NOLINT |
| 260 | return utfConvert(utf32, outUtf8, ConvertUTF32toUTF8); |
nothing calls this directly
no test coverage detected