| 682 | } |
| 683 | |
| 684 | bool TJsonValue::GetMap(TJsonValue::TMapType* value) const { |
| 685 | if (Type != JSON_MAP) { |
| 686 | return false; |
| 687 | } |
| 688 | *value = *Value.Map; |
| 689 | return true; |
| 690 | } |
| 691 | |
| 692 | bool TJsonValue::GetArray(TJsonValue::TArray* value) const { |
| 693 | if (Type != JSON_ARRAY) { |
no outgoing calls
no test coverage detected