| 25 | void BinaryOutputStream::next_map_key(std::string &name) { ser(name, *this); } |
| 26 | |
| 27 | bool BinaryOutputStream::begin_array(size_t &size, bool fixed_size) { |
| 28 | if (!fixed_size) |
| 29 | stream.write_varint(size); |
| 30 | return true; |
| 31 | } |
| 32 | |
| 33 | bool BinaryOutputStream::seria_v(int64_t &value) { |
| 34 | stream.write_varint(static_cast<uint64_t>(value)); |
nothing calls this directly
no test coverage detected