| 918 | } |
| 919 | |
| 920 | bool TJsonValue::IsArray() const noexcept { |
| 921 | return Type == JSON_ARRAY; |
| 922 | } |
| 923 | |
| 924 | bool TJsonValue::Has(const TStringBuf& key) const noexcept { |
| 925 | return Type == JSON_MAP && Value.Map->contains(key); |
no outgoing calls
no test coverage detected