| 698 | } |
| 699 | |
| 700 | bool TJsonValue::GetMapPointer(const TJsonValue::TMapType** value) const noexcept { |
| 701 | if (Type != JSON_MAP) { |
| 702 | return false; |
| 703 | } |
| 704 | *value = Value.Map; |
| 705 | return true; |
| 706 | } |
| 707 | |
| 708 | bool TJsonValue::GetArrayPointer(const TJsonValue::TArray** value) const noexcept { |
| 709 | if (Type != JSON_ARRAY) { |