MCPcopy Create free account
hub / github.com/apache/arrow / UTF8StringToUTF16

Function UTF8StringToUTF16

cpp/src/arrow/util/utf8.cc:187–193  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

185}
186
187Result<std::u16string> UTF8StringToUTF16(std::string_view source) {
188 try {
189 return UTF8StringToUTF16Internal(source);
190 } catch (std::exception& e) {
191 return Status::Invalid(e.what());
192 }
193}
194
195} // namespace util
196} // namespace arrow

Callers 3

ConvertToSQLWCHARFunction · 0.85
PostLastInstallerErrorFunction · 0.85
TESTFunction · 0.85

Calls 3

InvalidFunction · 0.50
whatMethod · 0.45

Tested by 1

TESTFunction · 0.68