write int64_t value as fixed 8 bytes to buffer at current writer index. Automatically grows buffer and advances writer index.
| 739 | /// write int64_t value as fixed 8 bytes to buffer at current writer index. |
| 740 | /// Automatically grows buffer and advances writer index. |
| 741 | FORY_ALWAYS_INLINE void write_int64(int64_t value) { |
| 742 | grow(8); |
| 743 | unsafe_put<int64_t>(writer_index_, value); |
| 744 | increase_writer_index(8); |
| 745 | } |
| 746 | |
| 747 | /// write float value as fixed 4 bytes to buffer at current writer index. |
| 748 | /// Automatically grows buffer and advances writer index. |
no outgoing calls