write raw bytes to buffer.
| 273 | |
| 274 | /// write raw bytes to buffer. |
| 275 | FORY_ALWAYS_INLINE void write_bytes(const void *data, uint32_t length) { |
| 276 | buffer_.write_bytes(data, length); |
| 277 | } |
| 278 | |
| 279 | /// write TypeMeta inline using streaming protocol. |
| 280 | /// First occurrence: writes (index << 1) | 0 followed by TypeDef bytes. |
no outgoing calls