MCPcopy Create free account
hub / github.com/brainboxdotcc/DPP / decode_array

Method decode_array

src/dpp/etf.cpp:329–335  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

327}
328
329json etf_parser::decode_array(uint32_t length) {
330 json array = json::array();
331 for(uint32_t i = 0; i < length; ++i) {
332 array.emplace_back(inner_parse());
333 }
334 return array;
335}
336
337json etf_parser::decode_list() {
338 const uint32_t length = read_32_bits();

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected