MCPcopy Create free account
hub / github.com/bcndev/bytecoin / begin_array

Method begin_array

src/seria/BinaryInputStream.cpp:17–21  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

15using namespace seria;
16
17bool BinaryInputStream::begin_array(size_t &size, bool fixed_size) {
18 if (!fixed_size)
19 size = stream.read_varint<size_t>();
20 return true;
21}
22
23bool BinaryInputStream::begin_map(size_t &size) {
24 size = stream.read_varint<size_t>();

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected