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

Function UTF16StringToUTF8

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

Source from the content-addressed store, hash-verified

177}
178
179Result<std::string> UTF16StringToUTF8(std::u16string_view source) {
180 try {
181 return UTF16StringToUTF8Internal(source);
182 } catch (std::exception& e) {
183 return Status::Invalid(e.what());
184 }
185}
186
187Result<std::u16string> UTF8StringToUTF16(std::string_view source) {
188 try {

Callers 2

TESTFunction · 0.85
timeUnitFromStringFunction · 0.85

Calls 3

whatMethod · 0.80
InvalidFunction · 0.50

Tested by 1

TESTFunction · 0.68