| 185 | } |
| 186 | |
| 187 | Result<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 |