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

Method binary

src/seria/KVBinaryOutputStream.cpp:257–263  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

255}
256
257bool KVBinaryOutputStream::binary(void *value, size_t size) {
258 write_element_prefix(BIN_KV_SERIALIZE_TYPE_STRING);
259 auto &out = stream();
260 write_array_size(out, size);
261 out.write(value, size);
262 return true;
263}

Callers

nothing calls this directly

Calls 2

write_array_sizeFunction · 0.85
writeMethod · 0.45

Tested by

no test coverage detected