| 255 | } |
| 256 | |
| 257 | bool 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 | } |
nothing calls this directly
no test coverage detected