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