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

Function UTF8ToWideString

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

Source from the content-addressed store, hash-verified

161} // namespace
162
163Result<std::wstring> UTF8ToWideString(std::string_view source) {
164 try {
165 return UTF8ToWideStringInternal(source);
166 } catch (std::exception& e) {
167 return Status::Invalid(e.what());
168 }
169}
170
171ARROW_EXPORT Result<std::string> WideStringToUTF8(const std::wstring& source) {
172 try {

Callers 7

WriteDSNFunction · 0.85
ConvertToSQLWCHARFunction · 0.85
DisplayConnectionWindowFunction · 0.85
ConfigDSNWFunction · 0.85
OnMessageMethod · 0.85
TESTFunction · 0.85
StringToNativeFunction · 0.85

Calls 3

UTF8ToWideStringInternalFunction · 0.85
whatMethod · 0.80
InvalidFunction · 0.50

Tested by 2

WriteDSNFunction · 0.68
TESTFunction · 0.68