| 807 | } |
| 808 | |
| 809 | bool TJsonValue::GetValuePointer(const size_t index, const TJsonValue** value) const noexcept { |
| 810 | if (Type == JSON_ARRAY && index < Value.Array->size()) { |
| 811 | *value = &(*Value.Array)[index]; |
| 812 | return true; |
| 813 | } |
| 814 | return false; |
| 815 | } |
| 816 | |
| 817 | bool TJsonValue::GetValuePointer(const TStringBuf key, const TJsonValue** value) const noexcept { |
| 818 | if (Type == JSON_MAP) { |
no test coverage detected