| 757 | } |
| 758 | |
| 759 | bool TJsonValue::GetMap(TJsonValue::TMapType* value) const { |
| 760 | if (Type != JSON_MAP) { |
| 761 | return false; |
| 762 | } |
| 763 | *value = *Value.Map; |
| 764 | return true; |
| 765 | } |
| 766 | |
| 767 | bool TJsonValue::GetArray(TJsonValue::TArray* value) const { |
| 768 | if (Type != JSON_ARRAY) { |
no outgoing calls
no test coverage detected