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

Method GetString

library/cpp/json/writer/json_value.cpp:676–682  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

674 }
675
676 bool TJsonValue::GetString(TString* value) const {
677 if (Type != JSON_STRING) {
678 return false;
679 }
680 *value = Value.String;
681 return true;
682 }
683
684 bool TJsonValue::GetMap(TJsonValue::TMapType* value) const {
685 if (Type != JSON_MAP) {

Callers 6

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

Calls

no outgoing calls

Tested by

no test coverage detected