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

Function GetMemberString

cpp/src/arrow/integration/json_internal.cc:896–900  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

894}
895
896Result<std::string> GetMemberString(const RjObject& obj, const std::string& key) {
897 const auto& it = obj.FindMember(key);
898 RETURN_NOT_STRING(key, it, obj);
899 return it->value.GetString();
900}
901
902Result<const RjObject> GetMemberObject(const RjObject& obj, const std::string& key) {
903 const auto& it = obj.FindMember(key);

Callers 2

json_internal.ccFile · 0.85
ARROW_ASSIGN_OR_RAISEFunction · 0.85

Calls 1

GetStringMethod · 0.45

Tested by

no test coverage detected