MCPcopy Create free account
hub / github.com/Palm1r/QodeAssist / stringArray

Function stringArray

sources/agents/AgentLoader.cpp:104–112  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

102}
103
104QStringList stringArray(const QJsonValue &v)
105{
106 QStringList out;
107 if (!v.isArray()) return out;
108 for (const auto &elem : v.toArray()) {
109 if (elem.isString()) out.append(elem.toString());
110 }
111 return out;
112}
113
114AgentConfig configFromMerged(const QJsonObject &obj)
115{

Callers 1

configFromMergedFunction · 0.70

Calls 2

appendMethod · 0.80
toStringMethod · 0.45

Tested by

no test coverage detected