| 994 | } |
| 995 | |
| 996 | bool TJsonValue::IsArray() const noexcept { |
| 997 | return Type == JSON_ARRAY; |
| 998 | } |
| 999 | |
| 1000 | bool TJsonValue::Has(const TStringBuf& key) const noexcept { |
| 1001 | return Type == JSON_MAP && Value.Map->contains(key); |
no outgoing calls
no test coverage detected