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

Function GetMemberString

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

Source from the content-addressed store, hash-verified

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