MCPcopy Create free account
hub / github.com/catboost/catboost / GetString

Method GetString

library/cpp/json/ordered_maps/json_value_ordered.cpp:751–757  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

749 }
750
751 bool TJsonValue::GetString(TString* value) const {
752 if (Type != JSON_STRING) {
753 return false;
754 }
755 *value = Value.String;
756 return true;
757 }
758
759 bool TJsonValue::GetMap(TJsonValue::TMapType* value) const {
760 if (Type != JSON_MAP) {

Callers 5

GetStringFunction · 0.45
TJsonValueMethod · 0.45
WriteJsonValueMethod · 0.45
Y_UNIT_TESTFunction · 0.45
Y_UNIT_TESTFunction · 0.45

Calls

no outgoing calls

Tested by

no test coverage detected