| 732 | } |
| 733 | |
| 734 | bool TJsonValue::GetValuePointer(const size_t index, const TJsonValue** value) const noexcept { |
| 735 | if (Type == JSON_ARRAY && index < Value.Array->size()) { |
| 736 | *value = &(*Value.Array)[index]; |
| 737 | return true; |
| 738 | } |
| 739 | return false; |
| 740 | } |
| 741 | |
| 742 | bool TJsonValue::GetValuePointer(const TStringBuf key, const TJsonValue** value) const noexcept { |
| 743 | if (Type == JSON_MAP) { |
no test coverage detected