MCPcopy Create free account
hub / github.com/HumbleNet/HumbleNet / jsonArrayIterator

Class jsonArrayIterator

src/api_builder/utilities.h:49–61  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

47};
48
49class jsonArrayIterator : jsonIteratorBase {
50public:
51 jsonArrayIterator(json_value* root) : jsonIteratorBase(root) {
52 assert(m_root->type == json_array);
53 }
54
55 json_value** begin() const {
56 return m_root->u.array.values;
57 }
58 json_value** end() const {
59 return m_root->u.array.values + m_root->u.array.length;
60 }
61};

Callers 6

buildLoaderFunction · 0.85
has_optionFunction · 0.85
parseTypedefsFunction · 0.85
write_functionsFunction · 0.85
write_enumsFunction · 0.85
buildExportFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected