| 765 | } |
| 766 | |
| 767 | bool TJsonValue::GetArray(TJsonValue::TArray* value) const { |
| 768 | if (Type != JSON_ARRAY) { |
| 769 | return false; |
| 770 | } |
| 771 | *value = *Value.Array; |
| 772 | return true; |
| 773 | } |
| 774 | |
| 775 | bool TJsonValue::GetMapPointer(const TJsonValue::TMapType** value) const noexcept { |
| 776 | if (Type != JSON_MAP) { |
no outgoing calls
no test coverage detected