MCPcopy Create free account
hub / github.com/Codeya-IDE/deepin-ide / array

Method array

3rdparty/cppdap/src/rapid_json_serializer.cpp:111–123  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

109}
110
111bool RapidDeserializer::array(
112 const std::function<bool(dap::Deserializer*)>& cb) const {
113 if (!json()->IsArray()) {
114 return false;
115 }
116 for (uint32_t i = 0; i < json()->Size(); i++) {
117 RapidDeserializer d(&(*json())[i]);
118 if (!cb(&d)) {
119 return false;
120 }
121 }
122 return true;
123}
124
125bool RapidDeserializer::field(
126 const std::string& name,

Callers 15

onIssueReceivedMethod · 0.45
onLabelsReceivedMethod · 0.45
onMilestonesReceivedMethod · 0.45
onPullRequestReceivedMethod · 0.45
onIssuesReceivedMethod · 0.45
onCommentsReceivedMethod · 0.45
onReviewsReceivedMethod · 0.45
onCommitsReceivedMethod · 0.45
addUserDataMethod · 0.45
addResponseMethod · 0.45

Calls 1

ValueClass · 0.85

Tested by

no test coverage detected