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

Function ParseJsonArray

Modules/CppMicroServices/src/usModuleManifest.cpp:77–87  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

75 }
76
77 void ParseJsonArray(const json& jsonArray, AnyVector& anyVector)
78 {
79 for (const auto& jsonValue : jsonArray)
80 {
81 Any anyValue = ParseJsonValue(jsonValue);
82 if (!anyValue.Empty())
83 {
84 anyVector.push_back(anyValue);
85 }
86 }
87 }
88
89}
90

Callers 1

ParseJsonValueFunction · 0.85

Calls 2

ParseJsonValueFunction · 0.85
EmptyMethod · 0.80

Tested by

no test coverage detected