MCPcopy Create free account
hub / github.com/CppMicroServices/CppMicroServices / ParseJsonArray

Function ParseJsonArray

framework/src/bundle/BundleManifest.cpp:151–162  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

149 }
150
151 void
152 ParseJsonArray(rapidjson::Value const& jsonArray, AnyVector& anyVector, bool ci)
153 {
154 for (auto const& jsonValue : jsonArray.GetArray())
155 {
156 Any anyValue = ParseJsonValue(jsonValue, ci);
157 if (!anyValue.Empty())
158 {
159 anyVector.emplace_back(std::move(anyValue));
160 }
161 }
162 }
163
164 } // namespace
165

Callers 1

ParseJsonValueFunction · 0.85

Calls 1

ParseJsonValueFunction · 0.85

Tested by

no test coverage detected