write int32_t value as fixed 4 bytes to buffer at current writer index. Automatically grows buffer and advances writer index.
| 723 | /// write int32_t value as fixed 4 bytes to buffer at current writer index. |
| 724 | /// Automatically grows buffer and advances writer index. |
| 725 | FORY_ALWAYS_INLINE void write_int32(int32_t value) { |
| 726 | grow(4); |
| 727 | unsafe_put<int32_t>(writer_index_, value); |
| 728 | increase_writer_index(4); |
| 729 | } |
| 730 | |
| 731 | /// write uint32_t value as fixed 4 bytes to buffer at current writer index. |
| 732 | /// Automatically grows buffer and advances writer index. |
no outgoing calls