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

Method GetMapPointer

library/cpp/json/writer/json_value.cpp:700–706  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

698 }
699
700 bool TJsonValue::GetMapPointer(const TJsonValue::TMapType** value) const noexcept {
701 if (Type != JSON_MAP) {
702 return false;
703 }
704 *value = Value.Map;
705 return true;
706 }
707
708 bool TJsonValue::GetArrayPointer(const TJsonValue::TArray** value) const noexcept {
709 if (Type != JSON_ARRAY) {

Callers 1

PatchMethod · 0.45

Calls

no outgoing calls

Tested by

no test coverage detected