| 690 | } |
| 691 | |
| 692 | bool TJsonValue::GetArray(TJsonValue::TArray* value) const { |
| 693 | if (Type != JSON_ARRAY) { |
| 694 | return false; |
| 695 | } |
| 696 | *value = *Value.Array; |
| 697 | return true; |
| 698 | } |
| 699 | |
| 700 | bool TJsonValue::GetMapPointer(const TJsonValue::TMapType** value) const noexcept { |
| 701 | if (Type != JSON_MAP) { |
no outgoing calls
no test coverage detected