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

Function GetMemberBool

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

Source from the content-addressed store, hash-verified

888}
889
890Result<bool> GetMemberBool(const RjObject& obj, const std::string& key) {
891 const auto& it = obj.FindMember(key);
892 RETURN_NOT_BOOL(key, it, obj);
893 return it->value.GetBool();
894}
895
896Result<std::string> GetMemberString(const RjObject& obj, const std::string& key) {
897 const auto& it = obj.FindMember(key);

Callers 2

ParseDictionaryFunction · 0.85
ARROW_ASSIGN_OR_RAISEFunction · 0.85

Calls 1

GetBoolMethod · 0.45

Tested by

no test coverage detected