| 888 | } |
| 889 | |
| 890 | Result<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 | |
| 896 | Result<std::string> GetMemberString(const RjObject& obj, const std::string& key) { |
| 897 | const auto& it = obj.FindMember(key); |
no test coverage detected