MCPcopy Create free account
hub / github.com/ClickHouse/ClickHouse / get

Method get

base/poco/JSON/src/Object.cpp:113–122  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

111
112
113Var Object::get(const std::string& key) const
114{
115 ValueMap::const_iterator it = _values.find(key);
116 if (it != _values.end())
117 {
118 return it->second;
119 }
120
121 return Var();
122}
123
124
125Array::Ptr Object::getArray(const std::string& key) const

Callers

nothing calls this directly

Calls 3

VarClass · 0.50
findMethod · 0.45
endMethod · 0.45

Tested by

no test coverage detected