| 234 | } |
| 235 | |
| 236 | static std::string ToString(const StringVal& v) { |
| 237 | return std::string(reinterpret_cast<char*>(v.ptr), v.len); |
| 238 | } |
| 239 | |
| 240 | static StringVal FromString(FunctionContext* ctx, const std::string& s) { |
| 241 | StringVal val = FromBuffer(ctx, s.c_str(), s.size()); |
no outgoing calls
no test coverage detected