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

Function GetMemberBool

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

Source from the content-addressed store, hash-verified

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