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

Method getArray

base/poco/JSON/src/Array.cpp:99–109  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

97
98
99Array::Ptr Array::getArray(unsigned int index) const
100{
101 Array::Ptr result;
102
103 Var value = get(index);
104 if (value.type() == typeid(Array::Ptr))
105 {
106 result = value.extract<Array::Ptr>();
107 }
108 return result;
109}
110
111
112Object::Ptr Array::getObject(unsigned int index) const

Callers 4

findStartMethod · 0.45
setValueMethod · 0.45
removeRawMethod · 0.45
makeArrayMethod · 0.45

Calls 2

getFunction · 0.50
typeMethod · 0.45

Tested by

no test coverage detected