| 91 | Status ObjectParser::Parse(std::string_view json) { return impl_->Parse(json); } |
| 92 | |
| 93 | Result<std::string> ObjectParser::GetString(const char* key) const { |
| 94 | return impl_->GetString(key); |
| 95 | } |
| 96 | |
| 97 | Result<bool> ObjectParser::GetBool(const char* key) const { return impl_->GetBool(key); } |
| 98 |
no outgoing calls